/* Hero Section - Enhanced */
.bg-home {
    background-image:url('../images/Home.jpg'), linear-gradient(rgba(0, 0, 0, 0.3) );;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 90vh; /* Slightly taller */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 145, 0, 0.15) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    position: relative;
}

/* Pseudo-element for extra design */


.content {
    max-width: 600px;
    color: white;
    text-align: left;
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #da9100;
    border-radius: 2px;
}

.content p {
    font-size: 1.3rem;
    margin-top: 20px;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

/* Floating elements animation */
.bg-home::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(218, 145, 0, 0.1);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .content h1 {
        font-size: 2.5rem;
    }
    .content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .bg-home {
        height: 80vh;
        border-radius: 0;
    }
    .content {
        padding: 0 5%;
        text-align: center;
    }
    .content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* Featured Section */
.featured-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.feature-card {
    border: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    background-color: #fff;
    margin-right: -50px;
}

.feature-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #1a3c34;
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-orange {
    color: #da9100;
}

.feature-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-images {
    position: relative;
    height: 600px;
}

.feature-img {
    border-radius: 15px;
    object-fit: cover;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-img.top {
    width: 100%;
    height: 48%;
    top: 0;
    right: 0;
    z-index: 1;
}

.feature-img.bottom {
    width: 100%;
    height: 48%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.ratio-4x3 {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.location-text h2 {
    font-size: 2rem;
    color: #1a3c34;
    margin-bottom: 20px;
}

.location-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #1a3c34;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-swiper {
    padding: 20px;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #4CAF50;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .feature-card {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .feature-images {
        height: 500px;
    }

    .content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .bg-home {
        height: 60vh;
    }

    .feature-images {
        height: 400px;
    }

    .content {
        padding: 0 5%;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 1rem;
    }
     .gallery-img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .bg-home {
        height: 50vh;
        margin: 2vh 0;
        border-radius: 15px;
    }

    .feature-images {
        height: 300px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 1200px) {
    .gallery-img {
        height: 300px;
    }
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

/* Social Media Section */
.social-media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.social-media-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.social-media-section .section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.social-card {
    display: block;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: height 0.4s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.social-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.instagram-card::before {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-card::before {
    background: linear-gradient(135deg, #000000 0%, #69C9D0 100%);
}

.social-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 1;
}

.instagram-card .social-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-card .social-icon {
    background: linear-gradient(135deg, #000000 0%, #69C9D0 100%);
}

.social-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.social-handle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.instagram-card .social-handle {
    color: #e1306c;
}

.tiktok-card .social-handle {
    color: #69C9D0;
}

.social-desc {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.instagram-card .follow-btn {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-card .follow-btn {
    background: linear-gradient(135deg, #000000 0%, #69C9D0 100%);
}

.social-card:hover .follow-btn {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .social-media-section {
        padding: 60px 0;
    }

    .social-media-section .section-header h2 {
        font-size: 2rem;
    }

    .social-card {
        padding: 2.5rem 1.5rem;
    }

    .social-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}
