/* S. PALATZIAN & CO - Consolidated Stylesheet
   Theme: Luxury Minimalist Dark
*/

/* Reset & Global Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 300; /* No bold fonts as requested */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: #121212;
    color: #a0a0a0;
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

img,
iframe {
    max-width: 100%;
}

section {
    scroll-margin-top: 95px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: clamp(2px, 0.7vw, 3px);
    line-height: 1.25;
}

p {
    overflow-wrap: break-word;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px clamp(20px, 8vw, 110px);
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1f1f1f;
}

#nav-logo {
    height: clamp(34px, 5vw, 45px);
    width: auto;
    opacity: 0.9;
    display: block;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(16px, 3vw, 40px);
    list-style: none;
    flex-wrap: wrap;
}

nav ul li a {
    color: #888;
    text-decoration: none;
    font-size: clamp(0.78rem, 1.4vw, 0.95rem);
    letter-spacing: clamp(1.3px, 0.4vw, 2.5px);
    text-transform: uppercase;
    transition: 0.4s ease;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #ffffff;
    letter-spacing: clamp(1.5px, 0.5vw, 3.5px);
}

/* Hero Section */
.hero {
    padding: clamp(130px, 16vw, 180px) clamp(20px, 10vw, 140px) clamp(70px, 10vw, 100px);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(1.55rem, 5vw, 2.4rem);
    margin-top: 30px;
    letter-spacing: clamp(3px, 1.4vw, 8px);
    overflow-wrap: break-word;
}

.subtitle {
    margin-top: 15px;
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: #a0a0a0;
    letter-spacing: clamp(1px, 0.5vw, 2px);
    text-transform: uppercase;
    display: block;
}

/* SEO Key Line */
.seo-key-line {
    margin-top: 35px;
    padding: 25px 0;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    display: inline-block;
    max-width: 100%;
}

.seo-key-line h2 {
    font-size: clamp(0.9rem, 2.6vw, 1.15rem);
    color: #8e7955; /* Luxury bronze/gold accent */
    letter-spacing: clamp(1.2px, 0.5vw, 2.5px);
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.5;
}

/* Hero Social/Connect Items */
.hero-connect {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 24px 35px;
    flex-wrap: wrap;
}

.connect-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(0.82rem, 2vw, 0.95rem);
    letter-spacing: clamp(1px, 0.35vw, 1.5px);
    text-transform: uppercase;
    transition: 0.4s ease;
}

.connect-item i {
    font-size: clamp(1.35rem, 4vw, 1.7rem); /* Larger icons for visibility */
    color: #8e7955;
    flex-shrink: 0;
}

.connect-item a:hover {
    color: #8e7955;
    transform: translateY(-2px);
}

/* Layout Containers */
.container {
    padding: clamp(70px, 10vw, 100px) clamp(20px, 10vw, 140px);
    max-width: 1400px;
    margin: auto;
}

.bg-alt {
    background: #0f0f0f;
}

.section-flex {
    display: flex;
    align-items: center;
    gap: clamp(40px, 7vw, 80px);
}

.text-side { flex: 1.2; }
.img-side { flex: 0.8; text-align: right; }

/* Image Accents */
.accent-img {
    width: 100%;
    max-width: 380px;
    border: 1px solid #222;
    padding: 10px;
    background: #1a1a1a;
}

.accent-img-large {
    width: 100%;
    max-width: 550px;
    height: auto;
    opacity: 0.8;
    border: 1px solid #1f1f1f;
}

/* UC Affiliation */
.uc-affiliation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #1f1f1f;
}

.uc-affiliation p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.uc-logo {
    width: 90px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.6s ease;
}

.uc-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 40px);
    margin-top: 30px;
}

.service-card {
    border: 1px solid #1f1f1f;
    padding: clamp(28px, 5vw, 50px);
    background: #141414;
    min-width: 0;
}

.meta {
    color: #8e7955;
    margin-top: 25px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(32px, 7vw, 80px);
    margin-top: 30px;
}

.contact-form input, .contact-form textarea {
    padding: 18px;
    background: transparent;
    border: 1px solid #222;
    color: #fff;
    margin-bottom: 15px;
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 16px 45px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.4s;
    width: fit-content;
}

.btn:hover {
    background: #ffffff;
    color: #121212;
}

.map-container {
    margin-top: 40px;
    border: 1px solid #222;
    filter: grayscale(1) invert(0.9);
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer */
footer {
    text-align: center;
    padding: clamp(55px, 8vw, 80px) clamp(20px, 10vw, 140px);
    border-top: 1px solid #1a1a1a;
}

.social-footer {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-footer a {
    color: #444;
    font-size: 1.6rem;
    transition: 0.3s;
}

.social-footer a:hover {
    color: #8e7955;
}

/* Tablet Adjustments */
@media (max-width: 900px) {
    nav {
        flex-direction: column;
        padding: 16px 24px;
    }

    nav ul {
        justify-content: center;
        gap: 14px 24px;
    }

    .hero {
        padding-top: 165px;
    }

    .section-flex {
        flex-direction: column;
        text-align: center;
    }

    .img-side {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    body {
        line-height: 1.7;
    }

    section {
        scroll-margin-top: 140px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-connect {
        flex-direction: column;
        align-items: center;
    }

    .img-side {
        margin-top: 0;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    nav {
        position: sticky;
        padding: 14px 16px;
    }

    nav ul {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 14px;
        text-align: center;
    }

    nav ul li a {
        white-space: normal;
    }

    .hero {
        padding-top: 55px;
    }

    .seo-key-line {
        padding: 18px 0;
    }

    .connect-item a {
        flex-direction: column;
        gap: 6px;
    }

    .btn {
        width: 100%;
    }

    footer p {
        font-size: 0.9rem;
    }
}
