/* Luxury Wedding & Events - Main Stylesheet */

/* CSS Variables for Luxury Theme */
:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B8941F;
    --accent-gold: #F4E4C1;
    --deep-black: #1a1a1a;
    --medium-black: #2d2d2d;
    --light-black: #404040;
    --ivory-white: #FFFFF0;
    --off-white: #F8F8F8;
    --text-light: #cccccc;
    --text-muted: #999999;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 30px;
    --spacing-lg: 50px;
    --spacing-xl: 80px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ivory-white);
    background-color: var(--deep-black);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.1rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-gold);
}

/* Navigation Header */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.luxury-header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ivory-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--spacing-xs) 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--ivory-white);
    transition: all 0.3s ease;
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--medium-black) 0%, var(--deep-black) 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-title {
    font-size: 3rem;
    color: var(--ivory-white);
    margin-bottom: var(--spacing-md);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.about-stats {
    display: flex;
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--medium-black) 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.contact-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.contact-title {
    font-size: 3rem;
    color: var(--ivory-white);
    margin-bottom: var(--spacing-sm);
}

.contact-subtitle {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    padding: 15px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ivory-white);
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--deep-black);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 40px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.05);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 5px;
}

.contact-info-content h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ivory-white);
    margin-bottom: var(--spacing-xs);
}

.contact-info-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.luxury-footer {
    background: var(--deep-black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ivory-white);
    margin-bottom: var(--spacing-md);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: var(--spacing-md);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--deep-black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: var(--spacing-lg);
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        justify-content: space-around;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .nav-container {
        height: 70px;
        padding: 0 var(--spacing-xs);
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-md);
    }
}


/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #faf7f0;
}

.gallery-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 260px;
    }
}

/* Polished multi-page UI */
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: var(--radius-full);
    color: var(--deep-black);
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.nav-link.active {
    color: var(--primary-gold);
}

.nav-link.active::after {
    width: 100%;
}

.page-hero {
    min-height: 54vh;
    padding: 150px var(--spacing-md) 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26,26,26,0.92), rgba(45,45,45,0.86)), url('../images/hero-luxury.jpg') center/cover no-repeat;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--deep-black));
}

.page-hero-content {
    max-width: 850px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary-gold);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.page-title {
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    color: var(--ivory-white);
    margin-bottom: 22px;
}

.page-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.9;
}

.content-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--medium-black) 100%);
}

.content-section.alt {
    background: linear-gradient(135deg, var(--medium-black) 0%, var(--deep-black) 100%);
}

.page-container,
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.luxury-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.35s ease;
}

.luxury-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 18px 45px rgba(212, 175, 55, 0.16);
}

.luxury-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.luxury-card-content {
    padding: 28px;
}

.luxury-card h3 {
    color: var(--ivory-white);
    font-size: 1.65rem;
}

.luxury-card p {
    color: var(--text-light);
}

.gold-button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--deep-black);
    box-shadow: var(--shadow-gold);
}

.outline-button {
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--primary-gold);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.split-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.check-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.check-list li {
    color: var(--text-light);
    padding-left: 32px;
    position: relative;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.gallery-item {
    position: relative;
    min-height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.86));
    color: var(--ivory-white);
    font-family: var(--font-serif);
    font-size: 1.35rem;
}

.testimonial-card {
    padding: 34px;
}

.testimonial-stars {
    color: var(--primary-gold);
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.contact-page-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.legal-content h2,
.legal-content h3 {
    color: var(--ivory-white);
}

.legal-content ul {
    color: var(--text-light);
    padding-left: 22px;
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .nav-cta { display: none; }
    .split-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding-top: 130px; min-height: 46vh; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 12px; text-align: center; }
    .contact-content { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}


/* Footer contact polish */
.footer-contact-info {
    display: grid;
    gap: 14px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.92rem;
}

.footer-contact-info .contact-item i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.luxury-header {
    transform: translateY(0);
}

.nav-toggle:focus-visible,
.nav-cta:focus-visible,
.nav-link:focus-visible,
.footer-links a:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 4px;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
    }
}
