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

body {
    background-color: rgb(246, 204, 204);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    background-color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px 10px 40px;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.nav {
    display: flex;
    gap: 10px;

    & :hover {
        color: black;
        font-weight: 600;
    }

    a {
        text-decoration: none;
        text-align: center;
        color: rgb(0, 0, 0);
        font-size: 18px;
        padding: 8px 16px;
        border-radius: 20px;
        transition: all 0.3s ease;

        &.active {
            background-color: #8B4513;
            color: white;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
        }

        &:hover:not(.active) {
            background-color: rgba(139, 69, 19, 0.1);
            color: #8B4513;
        }
    }
}

.name {
    display: flex;
    gap: 10px;

    img {
        height: 50px;
        width: 50px;
        align-items: center;
        cursor: pointer;

    }
}

/* Footer */

footer {
    background-color: white;
    color: black;
    text-align: center;
    padding: 20px 0;
    margin-top: 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 20px;

    .footer-term {
        display: flex;
        gap: 20px;

        a {
            text-decoration: none;
            color: black;
            padding: 8px 12px;
            border-radius: 15px;
            transition: all 0.3s ease;

            &.active {
                background-color: #8B4513;
                color: white;
                font-weight: 600;
            }

            &:hover:not(.active) {
                color: #8B4513;
                background-color: rgba(139, 69, 19, 0.1);
            }
        }
    }

    .footer-links {
        display: flex;
        gap: 15px;

        a {
            text-decoration: none;
        }
    }

    .footer-links img {
        width: 28px;
        height: 28px;
    }

    .footer-copyright {
        font-size: 14px;
        margin-top: 20px;
        color: gray;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    header {
        padding: 10px 30px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav a {
        font-size: 16px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .name {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: aliceblue;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 10px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        text-align: left;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 16px;
    }
    
    .footer {
        padding: 15px 0;
    }
    
    .footer-term {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 15px;
    }
    
    .name h1 {
        font-size: 1.2rem;
    }
    
    .name img {
        height: 40px;
        width: 40px;
    }
    
    .nav {
        padding: 15px;
    }
    
    .nav a {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .footer-term a {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .name h1 {
        font-size: 1rem;
    }
    
    .nav a {
        font-size: 13px;
        padding: 8px 10px;
    }
    
    .footer-links img {
        width: 20px;
        height: 20px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    text-align: center;
    padding: 80px 20px;
    
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #8B4513;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: 700;
}

.gallery-section p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #8B4513;
    border: 2px solid #8B4513;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Services & Pricing Section */
.services-pricing-section {
    padding: 80px 0;
    background: white;
}

.services-pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-pricing-section p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #8B4513;
}

.pricing-card.featured {
    border-color: #8B4513;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.card-header {
    margin-bottom: 25px;
    position: relative;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 5px;
}

.pricing-card.featured .price {
    color: white;
}

.per-hand {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.pricing-card.featured .per-hand {
    color: rgba(255, 255, 255, 0.8);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #FFD700;
    color: #8B4513;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(15deg);
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.card-content li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.pricing-card.featured .card-content li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.card-content li:last-child {
    border-bottom: none;
}

.book-btn {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.book-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.pricing-card.featured .book-btn {
    background: white;
    color: #8B4513;
}

.pricing-card.featured .book-btn:hover {
    background: #f8f9fa;
}

.pricing-note {
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #8B4513;
}

.pricing-note p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

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

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .gallery-section h2,
    .services-pricing-section h2 {
        font-size: 2rem;
    }
    
    .gallery-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .gallery-section,
    .services-pricing-section {
        padding: 40px 0;
    }
    
    .gallery-section h2,
    .services-pricing-section h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .price {
        font-size: 2rem;
    }
}