* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #331f0d;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100px;
    overflow: hidden;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 250px;
    width: auto;
    background: #331f0d;
    padding: 8px;
    border-radius: 5px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4a574;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #331f0d 0%, #4a2715 100%);
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    min-height: 600px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 8s ease-in-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
        opacity: 0;
    }
    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

.carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
    text-align: center;
}

.carousel-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(51, 32, 14, 0.7);
    color: #d4a574;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.carousel-btn:hover {
    background: rgba(51, 32, 14, 0.9);
    color: white;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #d4a574;
    transform: scale(1.3);
}

.cta-button {
    display: inline-block;
    background: #d4a574;
    color: #331f0d;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #d4a574;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: transparent;
    color: #d4a574;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #f5f1ed;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #331f0d;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #d4a574;
    border-radius: 2px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.read-more {
    color: #3d2817;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #d4a574;
}

/* Statistics Section */
.stats {
    background: linear-gradient(135deg, #331f0d 0%, #4a2715 100%);
    color: white;
    padding: 60px 20px;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #d4a574;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #331f0d;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #d4a574;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f5f1ed;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top-color: #d4a574;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #331f0d;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #331f0d;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: #f5f1ed;
    padding: 80px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #331f0d;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #d4a574;
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #331f0d;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #331f0d;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4a574;
    color: #3d2817;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a3a52;
    box-shadow: 0 0 5px rgba(26, 58, 82, 0.2);
}

.contact-form button {
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: #331f0d;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-container {
        height: 400px;
    }

    .carousel-overlay h2 {
        font-size: 2rem;
    }

    .carousel-overlay p {
        font-size: 1rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .carousel-container {
        height: 300px;
    }

    .carousel-overlay h2 {
        font-size: 1.5rem;
    }

    .carousel-overlay p {
        font-size: 0.9rem;
    }

    .carousel-btn {
        padding: 10px 15px;
        font-size: 18px;
    }

    .stats .container {
        grid-template-columns: 1fr 1fr;
    }
}
