/* ===== BANNER SECTION ===== */
.banner-container {
    margin-top: 20px;
}

.banner-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 300px;
}

.banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-wrapper:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.banner-wrapper:hover .overlay {
    background: rgba(0, 0, 0, 0.6);
}

.banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 90%;
    z-index: 2;
    color: white;
}

.banner-content h2,
.banner-content h4 {
    font-family: "Merriweather", serif;
    font-weight: 700;
    margin-bottom: 10px;
    animation: fadeInDown 0.6s ease;
}

.banner-content h2 {
    font-size: 2rem;
}

.banner-content h4 {
    font-size: 1.3rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner_button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.banner_button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 165, 92, 0.3);
}

.left-banner {
    min-height: 400px;
}

.right-banner {
    min-height: 200px;
}

/* ===== PARALLAX SECTION ===== */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: "Merriweather", serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.shop-now-btn-parallax {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.shop-now-btn-parallax:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 165, 92, 0.3);
}

/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 40px 0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.08);
    transition: transform 0.6s ease;
}


.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
    color: white;
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.shop-now-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.shop-now-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* ===== SOCIAL GALLERY ===== */
.social-post {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 5px;
}

.social-post img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.social-post:hover img {
    transform: scale(1.1);
}

.social-post .social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.social-post:hover .social-overlay {
    opacity: 1;
}

.social-post .social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 1.5rem;
    transform: scale(0);
    transition: var(--transition);
}

.social-post:hover .social-icon {
    transform: scale(1);
}

/* ðŸŽ¥ Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Zoom on hover */
.social-post:hover video {
    transform: scale(1.1);
}




/* ===== SERVICES SECTION ===== */
.floating-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.floating-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 165, 92, 0.1), transparent);
    border-radius: 50%;
    transition: var(--transition);
}

.floating-card:hover::before {
    top: 50%;
    right: 50%;
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.floating-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: var(--transition);
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-card:hover .floating-icon {
    color: var(--accent-color);
    font-size: 3.5rem;
}

.service-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}