/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Overpass', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-icon:hover {
    background: transparent;
    transform: scale(1.05);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text h1 {
    font-family: 'Orchid', cursive;
    font-size: 2rem;
    color: #3a4c29;
    font-weight: 700;
}

.logo-text p {
    font-size: 0.9rem;
    color: #666;
    margin-top: -5px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #3a4c29;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #979c3b;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #979c3b;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3a4c29 0%, #979c3b 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><path d="M0,0 C150,100 350,0 500,50 C650,100 850,0 1000,50 L1000,100 L0,100 Z"></path></svg>') repeat-x bottom;
    background-size: 1000px 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Orchid', cursive;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #25D366; /* WhatsApp green */
    color: white;
}

.btn-primary:hover {
    background-color: #128C7E; /* Darker WhatsApp green */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background-color: #075e54; /* WhatsApp Deep Sea Green */
    color: white;
}

.btn-secondary:hover {
    background-color: #25d366; /* WhatsApp Mountain Meadow */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(7, 94, 84, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: #3a4c29;
    margin-bottom: 30px;
    font-family: 'Orchid', cursive;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #3a4c29;
    margin-bottom: 50px;
    font-family: 'Orchid', cursive;
}

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

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-item i {
    font-size: 3rem;
    color: #979c3b;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #3a4c29;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #e5df93 0%, #979c3b 100%);
    color: #3a4c29;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Orchid', cursive;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #3a4c29;
    margin-bottom: 50px;
    font-family: 'Orchid', cursive;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.contact-item i.fa-instagram {
    color: #E4405F; /* Instagram pink */
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #3a4c29;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a,
.contact-item span {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
}

.contact-item a:hover {
    color: #E4405F; /* Instagram pink for Instagram links */
}

/* Specific styling for Instagram links */
.contact-item a[href*="instagram"] {
    color: #E4405F; /* Instagram pink for Instagram links */
}

.contact-item a[href*="instagram"]:hover {
    color: #F77737; /* Instagram orange on hover */
}

.email-copy {
    cursor: pointer;
    transition: color 0.3s ease;
}

.email-copy:hover {
    color: #979c3b;
}

/* Footer */
.footer {
    background-color: #3a4c29;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    gap: 30px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: #E5DF93;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(229, 223, 147, 0.2);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav {
        gap: 20px;
    }

    .hero {
        padding: 140px 0 70px; /* Further increased top padding for tablet breakpoint */
    }

    .hero h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }

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

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

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 180px 0 60px; /* Added extra 20px top padding for mobile */
        margin-top: 0;
    }

    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .about,
    .services,
    .contact {
        padding: 60px 0;
    }
}
