/* Art Deco Elegance Design System
 * Geometric precision with luxurious details
 * Warm earth tones with gold and sage accents
 * Playfair Display headings, Raleway body, Cinzel accents
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6F47;
    --primary-light: #A68A5E;
    --primary-dark: #6B5537;
    --accent: #7A9B76;
    --accent-light: #8FAF8B;
    --background: #FAF7F2;
    --foreground: #2C2416;
    --card: #FFFFFF;
    --border: #D9CFC0;
    --muted: #EBE6DD;
    --muted-foreground: #6B6355;
    --shadow: rgba(139, 111, 71, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
}

/* Navigation */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: 0 2px 8px var(--shadow);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text h2 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.nav-links {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--muted);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 16px var(--shadow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Section Labels */
.section-label {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background-image: linear-gradient(135deg, rgba(250, 247, 242, 0.95) 0%, rgba(250, 247, 242, 0.85) 100%), 
                      url('../images/hero-background-wallpaper.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 48rem;
    padding: 4rem 0;
}

.hero-label {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    animation: bounce 2s infinite;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px var(--shadow);
}

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

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: rgba(235, 230, 221, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px var(--shadow);
    transform: translateY(-8px);
}

.service-image {
    height: 16rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.icon-card {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.1), rgba(122, 155, 118, 0.1));
}

.service-icon {
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 4rem;
    height: 4rem;
    color: var(--primary);
}

/* Why Choose Us Section */
.why-section {
    padding: 5rem 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--card);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 6px 16px var(--shadow);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: rgba(139, 111, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--muted-foreground);
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.05), rgba(122, 155, 118, 0.05));
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 6px 16px var(--shadow);
}

.stars {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(139, 111, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--foreground);
}

.reviewer-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Service Areas Section */
.service-areas-section {
    padding: 5rem 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.area-card {
    padding: 1.5rem;
    background-color: var(--card);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: box-shadow 0.3s ease;
}

.area-card:hover {
    box-shadow: 0 4px 12px var(--shadow);
}

.area-card.primary {
    border-left: 4px solid var(--primary);
}

.area-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.area-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.areas-info {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}

.areas-info p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.callout {
    background-color: rgba(139, 111, 71, 0.1);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary);
}

.callout p {
    margin-bottom: 0.5rem;
}

.callout a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.callout a:hover {
    text-decoration: underline;
}

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

    .areas-list {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: rgba(235, 230, 221, 0.3);
}

.faq-list {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px var(--shadow);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.3s ease;
}

.faq-item summary:hover {
    background-color: rgba(235, 230, 221, 0.5);
}

.faq-item summary h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.faq-item summary svg {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary svg {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
}

.faq-content p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    background-color: var(--background);
    color: var(--foreground);
    transition: all 0.3s ease;
}

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

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

.success-message {
    display: none;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(122, 155, 118, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 6px;
}

.success-message p {
    margin-bottom: 0.5rem;
}

.success-message strong {
    color: var(--accent);
    font-size: 1.125rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(139, 111, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    color: var(--primary);
}

.info-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-item a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary);
}

.map-container {
    background-color: var(--card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
}

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

/* Footer */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.footer-logo h3 {
    font-size: 1.125rem;
    line-height: 1.2;
}

.footer-logo p {
    font-size: 0.75rem;
    opacity: 0.8;
}

.footer-col p {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--background);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.875rem;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 247, 242, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
