/* ===========================
   Art Deco Theme Variables
   =========================== */
:root {
    --gold: #D4AF37;
    --dark-gold: #B8941E;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --medium-gray: #2A2A2A;
    --light-gray: #E8E8E8;
    --white: #FFFFFF;
    --cream: #F5F5DC;
    --accent: #8B7355;
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, var(--black), var(--dark-gray));
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid var(--gold);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px);
}

.hero-decoration-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--cream), transparent);
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
    position: relative;
}

.hero-ornament {
    width: 100px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 2rem;
    position: relative;
}

.hero-ornament::before,
.hero-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero-ornament::before {
    left: -15px;
}

.hero-ornament::after {
    right: -15px;
}

.hero-ornament.bottom {
    margin: 2rem auto 0;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 2rem auto;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--black);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 1rem 0;
    font-weight: 700;
}

.ornamental-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto;
    position: relative;
}

.ornamental-line::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 1.2rem;
    background: var(--cream);
    padding: 0 10px;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--gold);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.feature-card p {
    color: var(--accent);
    font-size: 1rem;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--dark-gray), var(--black));
    position: relative;
}

.services .section-header h2 {
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--medium-gray);
    padding: 3rem 2rem;
    border: 2px solid var(--gold);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    transition: all 0.3s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    background: linear-gradient(135deg, transparent 50%, var(--gold) 50%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    background: var(--dark-gray);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.service-card > p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    color: var(--light-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ===========================
   Portfolio Section
   =========================== */
.portfolio {
    padding: 8rem 0;
    background: var(--cream);
}

.portfolio-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 4rem;
    font-style: italic;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    background: var(--white);
    border: 2px solid var(--gold);
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-gray), var(--dark-gray));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.portfolio-placeholder p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.portfolio-info p {
    color: var(--accent);
    line-height: 1.6;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--black), var(--dark-gray));
}

.contact .section-header h2 {
    color: var(--gold);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.contact-text {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    color: var(--gold);
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--light-gray);
}

.contact-form-container {
    background: var(--medium-gray);
    padding: 3rem;
    border: 2px solid var(--gold);
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-gold);
    background: var(--black);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--light-gray);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 0.5rem;
    font-size: 0.85rem;
    color: var(--gold);
    background: var(--medium-gray);
    padding: 0 0.5rem;
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: 2px solid var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--black);
    padding: 3rem 0 2rem;
    border-top: 2px solid var(--gold);
}

.footer-content {
    text-align: center;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--light-gray);
    letter-spacing: 1px;
}

.footer-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 2rem auto;
}

.footer-copyright {
    color: var(--light-gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .portfolio-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
    }
}
