:root {
    /* Color Palette */
    --color-primary: #4a0e12;
    /* Deep Burgundy */
    --color-primary-light: #6b151b;
    --color-accent: #d4af37;
    /* Gold */
    --color-accent-light: #eac756;
    --color-text-light: #fdfbf7;
    /* Cream/White */
    --color-text-dark: #1a1a1a;
    --color-bg-light: #fdfbf7;
    --color-bg-dark: #4a0e12;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* Specific Component Styles (will be refined in components) */
.bg-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background-color: var(--color-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    /* Fixed height for header logo */
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    /* improved readability */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    position: relative;
    z-index: 1100;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* Hero Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    margin-top: -80px;
    /* To go behind the fixed header */
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    text-align: center;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--color-accent);
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    animation: pulseGlow 3s infinite alternate;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    from {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    }

    to {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 50px rgba(212, 175, 55, 0.5));
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 40px;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-section .logo {
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-tagline {
    opacity: 0.7;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--color-accent);
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-section {
        align-items: center;
    }

    .footer-logo-section .logo {
        align-items: center;
    }
}

/* About Section Styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.about-text-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    line-height: 1.8;
}

.about-highlight-card {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(74, 14, 18, 0.2);
    font-size: 1.1rem;
    line-height: 1.8;
}


.about-conclusion {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.about-cta {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-dark);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-highlight-card {
        padding: 30px;
    }
}

/* Why Us Section Styles - Redesign */
.why-us-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 500;
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.feature-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item p {
    color: var(--color-text-dark);
    opacity: 0.9;
    line-height: 1.7;
}

.text-accent {
    color: var(--color-accent);
    font-weight: 600;
}

/* Highlight Section */
.why-us-highlight {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 40px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(74, 14, 18, 0.3);
}

.why-us-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.highlight-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.text-lg {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.welcome-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .why-us-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-heading {
        font-size: 2rem;
    }

    .highlight-text {
        font-size: 1.4rem;
    }
}