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

/* The Seasons Font */
@font-face {
    font-family: 'The Seasons';
    src: url('includes/TheSeasons.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'The Seasons';
    src: url('includes/TheSeasonsBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #8B6F47;
    --color-primary-dark: #6B5435;
    --color-accent: #D4AF37;
    --color-bg-light: #5A5660;
    --color-bg-cream: #4A4650;
    --color-text-dark: #FFFFFF;
    --color-text-light: #F5F5F5;
    --color-white: #FFFFFF;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'The Seasons', serif;
    color: var(--color-text-dark);
    background-color: var(--color-bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 24px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(74, 70, 80, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: 'The Seasons', serif;
    font-size: 30px;
    color: var(--color-white);
    font-weight: 400;
    margin: 0;
}

.nav-brand .tagline {
    font-size: 24px;
    color: var(--color-text-light);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-cream) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 70, 80, 0.85) 0%, rgba(90, 86, 96, 0.75) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 111, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--spacing-lg);
}

.hero-title,
.hero-content h1.hero-title,
h1.hero-title {
    font-family: 'The Seasons', serif !important;
    font-size: clamp(48px, 8vw, 72px) !important;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle,
.hero-content p.hero-subtitle,
p.hero-subtitle {
    font-family: 'The Seasons', serif !important;
    font-size: clamp(20px, 3vw, 28px) !important;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--color-bg-cream), transparent);
    z-index: 2;
    pointer-events: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 24px;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.5);
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

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

.section-header h2 {
    font-family: 'The Seasons', serif;
    font-size: clamp(36px, 5vw, 48px);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    color: var(--color-text-light);
    font-weight: 400;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-text {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.about-text p {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    line-height: 1.9;
    color: var(--color-text-light);
    padding: var(--spacing-md);
    background: rgba(90, 86, 96, 0.6);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-accent);
    transition: var(--transition);
}

.about-text p:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Scratching Section */
.scratching-section {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-cream) 100%);
    position: relative;
}

.scratching-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.scratching-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.scratching-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.scratching-content {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    line-height: 1.9;
    color: var(--color-text-light);
    padding: var(--spacing-lg);
    background: rgba(90, 86, 96, 0.7);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scratching-content strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Services Section */
.services-section {
    background: var(--color-bg-cream);
}

.services-image-wrapper {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-wrapper .section-image,
.scratching-image-wrapper .section-image {
    min-height: 400px;
    object-fit: cover;
}

.services-image-wrapper .section-image {
    min-height: 300px;
    object-fit: cover;
}

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

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.offer-card {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-cream) 100%);
    border-radius: calc(var(--border-radius) + 4px);
    padding: var(--spacing-lg);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.2);
    border-color: var(--color-primary);
}

.offer-card-large {
    grid-column: span 2;
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-accent) 0%, #B8941F 100%);
    color: var(--color-white);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transform: rotate(2deg);
    transition: var(--transition);
}

.offer-card:hover .offer-badge {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.offer-card h3 {
    font-family: 'The Seasons', serif;
    font-size: 30px;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    font-weight: 400;
}

.offer-price {
    font-family: 'The Seasons', serif;
    font-size: 30px;
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
}

.offer-intro {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--color-text-light);
    line-height: 1.7;
}

.offer-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: var(--spacing-sm);
    color: var(--color-primary);
}

.offer-list li strong {
    color: var(--color-white);
    font-weight: 600;
}

.offer-sublist {
    list-style: none;
    margin-top: var(--spacing-xs);
    margin-left: var(--spacing-md);
}

.offer-sublist li::before {
    content: '•';
    color: var(--color-primary);
}

.custom-offer-section h4 {
    font-family: 'The Seasons', serif;
    color: var(--color-white);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 30px;
    font-weight: 400;
}

.offer-note {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(139, 111, 71, 0.05);
    border-radius: var(--border-radius);
    font-style: italic;
    color: var(--color-text-light);
}

.closing-message {
    font-family: 'The Seasons', serif;
    text-align: center;
    padding: var(--spacing-lg);
    font-size: 24px;
    color: var(--color-primary);
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: var(--color-bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item h3 {
    font-family: 'The Seasons', serif;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-size: 30px;
    font-weight: 400;
}

.contact-item p {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: var(--color-bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.form-group label {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    color: var(--color-primary);
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    padding: 0.9rem;
    border: 2px solid var(--color-bg-light);
    border-radius: 8px;
    color: var(--color-text-dark);
    transition: var(--transition);
    background: var(--color-bg-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer.footer {
    background: #2A262E !important;
    background-color: #2A262E !important;
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: start;
    background: transparent;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo {
    width: 150px;
    height: 150px;
    margin-bottom: var(--spacing-md);
    object-fit: contain;
}

.footer-brand h3 {
    font-family: 'The Seasons', serif;
    font-size: 30px;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    font-weight: 400;
}

.footer-brand p {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    color: var(--color-white);
    line-height: 1.8;
    margin-top: var(--spacing-sm);
}

.footer-links h4 {
    font-family: 'The Seasons', serif;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-size: 30px;
    font-weight: 400;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: var(--spacing-xs);
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .offer-card-large {
        grid-column: span 1;
    }

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

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .scratching-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper .section-image,
    .scratching-image-wrapper .section-image {
        min-height: 300px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--color-bg-cream);
        width: 100%;
        padding: var(--spacing-md);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        gap: var(--spacing-sm);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: 500px;
        margin-top: 70px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-logo {
        margin: 0 auto var(--spacing-md);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 2rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .offer-card {
        padding: var(--spacing-md);
    }

    .contact-form-wrapper {
        padding: var(--spacing-md);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Legal Pages Styles */
.legal-section {
    background: var(--color-bg-cream);
    min-height: calc(100vh - 80px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: var(--color-bg-cream);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-family: 'The Seasons', serif;
    font-size: 30px;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-weight: 400;
}

.legal-content h2 {
    font-family: 'The Seasons', serif;
    font-size: 30px;
    color: var(--color-primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.legal-content h3 {
    font-family: 'The Seasons', serif;
    font-size: 30px;
    color: var(--color-primary-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.legal-content p {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.legal-content ul {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--color-primary-dark);
}

