/* ================= GLOBAL ================= */
body { font-family: 'Montserrat', sans-serif; scroll-behavior: smooth; overflow-x:hidden; color:#333; }
a { text-decoration: none; color: inherit; }
h2 {color: #036316;}
/* ================= NAVBAR ================= */
.navbar-brand .logo-lg { width: 180px; transition: transform 0.4s ease; border-radius: 100PX;
      box-shadow: 0 2px 10px 5px rgba(255, 255, 255, 0.9);}
.navbar-brand:hover .logo-lg { transform: scale(1.2) rotate(-5deg); }
.navbar {background-color: #035502; color:#FFC107; transition: background-color 0.4s, box-shadow 0.4s; }
.navbar.scrolled { background-color: rgba(255,255,255,0.95); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
 span.brand-text { font-family:'Playfair Display', serif; font-size:36px; font-weight:800; color:#ffc400; }
.navbar-toggler { border-color: #fff; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }

/* Navbar link hover */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFC107;
    transition: width 0.3s;
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Back-to-top button */
#backToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #FFC107;
    color: #fff;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}
#backToTop:hover {
    background-color: #ff6f00;
    transform: scale(1.2);
}
/* ================= HERO ================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}


/* Overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Text animations */
.animate-zoom { animation: zoomIn 1.5s ease forwards; }
.animate-slide { animation: slideUp 1.5s ease forwards; }
.animate-fade { animation: fadeIn 2s ease forwards; }

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================= BACKGROUND SLIDER ================= */
.hero {
    background-size: cover;
    background-position: center;
    animation: slideBg 18s infinite;
}

/* Sliding background keyframes */
@keyframes slideBg {
    0% { background-image: url('images/bg1.png'); }
    33% { background-image: url('images/bg2.png'); }
    66% { background-image: url('images/bg3.png'); }
    100% { background-image: url('images/bg1.png'); }
}

/* ================= SECTION TITLES ================= */
.section-title { font-family:'Playfair Display', serif; font-size:2.5rem; margin-bottom:2rem; text-align:center; position:relative; }
.section-title::after { content:''; width:60px; height:3px; background:#FFC107; display:block; margin:10px auto 0; border-radius:3px; }

/* ================= COLLECTION ================= */
.card { border:none; border-radius:15px; overflow:hidden; transition:transform 0.5s, box-shadow 0.5s; }
.card:hover { transform:translateY(-10px) scale(1.05); box-shadow:0 15px 25px rgba(0,0,0,0.2);}
.hover-scale img { transition: transform 0.5s;}
.hover-scale img:hover { transform: scale(1.1);}

/* ================= GALLERY ================= */
.gallery img { border-radius:15px; transition: transform 0.5s, filter 0.5s;}
.gallery img:hover { transform: scale(1.05) rotate(2deg); filter:brightness(1.1);}



.gallery-slider { position: relative; overflow: hidden; border-radius: 15px; }
.gallery-slider .slide { position: absolute; width: 100%; opacity: 0; transition: opacity 1s; }
.gallery-slider .slide.active { opacity: 1; }
/* ================= VIDEOS ================= */
video { border-radius:15px; transition: transform 0.5s, box-shadow 0.5s; }
video:hover { transform: scale(1.05); box-shadow:0 10px 20px rgba(0,0,0,0.2); }

/* ================= ABOUT ================= */
.social-icons a { color:#FFC107; margin:0 10px; transition: color 0.3s, transform 0.3s; }
.social-icons a:hover { color:#ff6f00; transform: scale(1.2); }

/* ================= CONTACT ================= */
form input, form textarea { border-radius:10px; border:1px solid #ccc; transition: all 0.3s; }
form input:focus, form textarea:focus { border-color:#FFC107; box-shadow:0 0 8px rgba(255,193,7,0.5); outline:none; }

/* ================= FOOTER ================= */
footer { background:#014f11; color:#facc00; padding:2rem 0;}
footer a:hover { color:#FFC107; }

/* ================= SCROLL ANIMATION ================= */
.animate-on-scroll { opacity:0; transform:translateY(50px); transition: all 0.8s ease; }
.animate-on-scroll.visible { opacity:1; transform:translateY(0); }

/* ================= RESPONSIVE ================= */
@media(max-width:768px){.hero-content h1{font-size:2rem;} .hero-content p{font-size:1rem;} .navbar-brand .logo-lg{width:100px;}}