@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.title-font {
    font-family: 'Playfair Display', serif;
}

.gold-text {
    color: #D4AF37;
}

.gold-bg {
    background-color: #D4AF37;
}

.hover-gold:hover {
    color: #D4AF37;
}

.pink-accent {
    color: #FFB6C1;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.whatsapp-button {
    animation: pulse 2s infinite;
}

.object-center-top {
    object-position: center top;
}


.about-image-container {
    transition: transform 0.3s ease;
}

.about-image-container:hover {
    transform: scale(2);
}

@media (max-width: 640px) {
    .hero-image-container {
        width: 240px;
        height: 240px;
    }

    html{
        overflow-x: hidden;
    }
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Logo styles */
.logo-container {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-image {
        width: 200px;
        height: 200px;
    }

    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .logo-container {
        height: 40px;
    }

    html{
        overflow-x: hidden;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .hero-image {
        width: 250px;
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    html{
        overflow-x: hidden;
    }
}