:root {
    --primary-green: #316d1e;
    --primary-green-dark: #2a4328;
    --primary-green-light: #5a8a54;
    --beige: #f6f0e6;
    --beige-dark: #e8dcc8;
    --terracotta: #c47b46;
    --terracotta-light: #d89b6a;
    --text-primary: #2d2d2d;
    --text-secondary: #5a5a5a;
    --text-light: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f9f6f1;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

[data-theme="earth"] {
    --primary-green: #556b2f;
    --primary-green-dark: #3a4a1f;
    --primary-green-light: #6b8e23;
    --beige: #e8dcc8;
    --beige-dark: #d4c4a8;
    --terracotta: #a67c52;
    --terracotta-light: #bf9968;
    --bg-primary: #f5f1e8;
    --bg-secondary: #ebe4d5;
}

[data-theme="dark"] {
    --primary-green: #5a8a54;
    --primary-green-dark: #3b5d38;
    --primary-green-light: #6b9b64;
    --beige: #3a3a3a;
    --beige-dark: #2a2a2a;
    --terracotta: #d89b6a;
    --terracotta-light: #e8b896;
    --text-primary: #e8e8e8;
    --text-secondary: #b8b8b8;
    --text-light: #ffffff;
    --bg-primary: #1a1a1a;
    --bg-secondary: #252525;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins';
    font-size: auto;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: var(--transition);
}
.logoanas{
    width: 150px;
    height: auto;
   
}
.logoanass{
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

h1, h2, h3, h4, h5, h6 {
    font-family:Spectral ;
    line-height: 1.2;
    font-weight: 600;

}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.navbar {
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-green);
    color: var(--text-light);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.theme-toggle {
    background: var(--beige);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: rotate(20deg) scale(1.1);
    background: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
.hero-carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

/* Background Slides */
.carousel-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Text Content */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 15px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

/* Buttons */
.hero-btns {

    justify-content: center;
  
}

.btn {
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.btn.primary {
    background: #00b050;
    color: #fff;
}

.btn.secondary {
    background: #fff;
    color: #333;
    margin-top: 10px;
}

/* Responsive */


.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/media/Slide\ 1[1].jpg') center/cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 1100px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--terracotta-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.btn-secondary {
    background: rgb(59,93,56);
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--text-light);
    color: var(--primary-green);
}

.btn-light:hover {
    background: var(--beige);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.welcome-section,
.animals-preview,
.about-content,
.booking-section,
.contact-section,
.experiences-section {
    padding: 3rem 0;
    margin-top: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1rem;
    margin-top:0px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.welcome-content {
    text-align: justify;
    max-width: 1300px;
    margin: 0 auto 4rem;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px var(--shadow);
}
.feature-card p{
    text-align: justify;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.animals-preview {
    background: rgb(225, 240, 220);
}


.animals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.animal-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.animal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}



.animal-card h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    padding: 1.5rem 1.5rem 0.5rem;
}

.tamil-name {
    font-style: italic;
    color: rgb(139, 41, 5);
    padding: 0 1.5rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.animal-card p:last-child {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.text-center {
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-light);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer {
    background: var(--primary-green-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-col p{
    margin-top: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    width: 300px;

}
.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--terracotta-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-light);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-story,
.about-vision {
    margin: 0 auto 4rem;
    align-items: center;
}

.about-story p,
.about-vision p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    width: 900px;
    text-align: center;
}

.photo-collage img {
    margin: 4rem 0;
    border-radius: 10px;
}

.photo-collage {
    margin: 4rem 0;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
}

.collage-item {
    border-radius: 15px;
    background-size: cover;
    background-position: center;
}

.collage-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.collage-item.tall {
    grid-row: span 2;
}


.about-values {
    margin: 5rem 0;
}

.values-grid {
    display: flex;
   justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
  
}

.value-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    width: 300px;
   
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.about-features {
    margin: 4rem 0;
}

.feature-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
     box-shadow: rgb(160, 160, 160) 0 5px 10px 0 ;
}

.feature-list-item:hover {
    background: var(--primary-green);
    color: var(--text-light);
    transform: translateX(10px);
}

.check-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
}

.feature-list-item:hover .check-icon {
    color: var(--text-light);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.room-card {
    background:  rgb(247, 255, 244);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.room-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.room-content {
    padding: 2rem;
}

.room-content h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.room-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.room-price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-secondary);
}

.room-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.room-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.facility {
    background: var(--beige);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.room-note {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.room-note h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.amenities-list li::before {
    content: '✓ ';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gallery-label {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.8rem 1.5rem;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-popup.active {
    display: flex;
}

.popup-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.popup-nav:hover {
    background: rgba(255,255,255,0.3);
}

.popup-nav.prev {
    left: 2rem;
}

.popup-nav.next {
    right: 2rem;
}

.popup-image-container {
    max-width: 90%;
    max-height: 90%;
}

.popup-image {
    width: 100%;
    height: 80vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.catalogue-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-select {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-green);
    border-radius: 30px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}
.animalimage{
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.catalogue-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.catalogue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}



.catalogue-card h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    padding: 1.5rem 1.5rem 0.5rem;
}

.short-desc {
    padding: 0 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.catalogue-card .btn {
    margin: 0 1.5rem 1.5rem;
}

.animal-modal,
.booking-modal,
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.animal-modal.active,
.booking-modal.active,
.success-modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    padding: 20px;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--terracotta);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    padding: 2rem;
}

.animal-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-image {
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

.modal-info h2 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.modal-tamil {
    font-style: italic;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.modal-description {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 10px;
}

.detail-item strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form,
.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: #979797 0px 5px 10px 0;
}

.booking-form h2,
.contact-form h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    background:rgb(225, 240, 220);
    color: var(--text-primary);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.booking-info-container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.booking-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0px 5px 10px 0 #a19f9f;
    height: fit-content;
}

.booking-info h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    margin-bottom: 2rem;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--beige-dark);
}

.info-list li::before {
    content: '• ';
    color: var(--terracotta);
    font-weight: bold;
    margin-right: 0.5rem;
}

.contact-box {
    background: var(--primary-green);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.contact-box h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-box a {
    color: var(--text-light);
    text-decoration: underline;
}

.summary-content {
    background:rgb(225, 240, 220);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.modal-note {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.success-body {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-info h2{
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.social-section {
    margin-top: 2rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--text-light);
    transform: translateX(10px);
}

.social-icon {
    font-size: 1.5rem;
}

.map-section {
    margin-top: 4rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.experiences-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.activity-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.activity-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.activity-card h3 {
    color: var(--primary-green);
    padding: 1.5rem 1.5rem 0.5rem;
}

.activity-card p {
    padding: 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.activity-duration {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    color: var(--terracotta);
    font-weight: 500;
    font-size: 0.9rem;
}

.testimonials-section {
    margin-top: 5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px var(--shadow);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary-green);
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

#wp{
  position: fixed;
  z-index: 5 !important;
  bottom: 7%;
  left:95.5%;
  width: 50px;
  height: 50px;
}
 #wp:hover{
  transform: scale(1.2);
 }
 #uparrow{
  position: fixed;
  z-index: 5 !important;
  bottom: 1.5%;
  left:96%;
 }

.button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(rgb(8, 61, 41), rgb(12, 182, 41));
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: #ffffff;
}



/* icons */
/* From Uiverse.io by wilsondesouza */ 
ul {
  list-style: none;
}

.example-2 {
  display: flex;
margin-top: 20px;

}
.example-2 .icon-content {
  margin: 0 8px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
  background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: #3b5998;
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ac4c4cd3;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}




/* resort content */
.resort-content{
    padding: 4rem 0;
}

.accommodations,
.facilities,
.activities {
    margin-bottom: 4rem;
}

.accommodation-grid,
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.accommodation-card,
.facility-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: rgb(192, 192, 192) 0 5px 15px 0 ;
    transition: var(--transition);
}

.accommodation-card:hover,
.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.accommodation-icon,
.facility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.accommodation-card h3,
.facility-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.amenity-list {
    list-style: none;
    margin-top: 1rem;
}

.amenity-list li {
    padding: 0.5rem 0;
    color: var(--text-color);
}

.activities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.activity-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
     box-shadow: rgb(192, 192, 192) 0 5px 15px 0 ;
}

.activity-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.custom-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.custom-alert-box {
    background: #ffffff;
    padding: 25px;
    width: 300px;
    border-radius: 15px;
    text-align: center;
    animation: popIn 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.custom-alert-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #28a745;
}

.custom-alert-box p {
    font-size: 16px;
    margin-bottom: 20px;
}

.alert-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

.alert-btn:hover {
    background: #218838;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.ytvdos{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}


@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 125px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .booking-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .animal-modal .modal-body {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
       #wp{
  position: fixed;
  z-index: 5 !important;
  bottom: 7%;
  left:91.5%;
  width: 50px;
  height: 50px;
}

 #uparrow{
  position: fixed;
  z-index: 5 !important;
  bottom: 1.5%;
  left:93%;
 }

}
@media (max-width: 768px) {
    .collage-grid {
        grid-template-columns: 1fr 1fr;  /* 2 column grid for mobile */
        grid-template-rows: auto;
    }

    .collage-item.large,
    .collage-item.tall {
        grid-column: span 2;   /* full width on mobile */
        grid-row: span 1;
        height: 220px;         /* adjust height */
    }

    .collage-item {
        height: 180px;         /* normal items height */
    }

    .photo-collage img {
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    .about-values {
    margin: 3rem;
}
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
    font-size: 1rem;
    text-align: justify;
    padding: 10px 20px 0px;
}

    .page-header h1 {
        font-size: 2rem;
    }

    .features-grid,
    .animals-grid,
    .rooms-grid,
    .gallery-grid,
    .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .popup-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .popup-nav.prev {
        left: 1rem;
    }

    .popup-nav.next {
        right: 1rem;
    }

    .collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .collage-item.large,
    .collage-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
}
@media (max-width: 768px) {
    .hero-text h1 {
         font-size: 2.2rem;
         width: 300px;
         margin-top: 0px;
     }
    .hero-text p { 
        font-size: 1.1rem;
        width: 300px;
     }
     
}

@media (max-width: 480px) {
    .ytvdos{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}
    .values-grid {
    display: flex;
   flex-direction: column;
   align-items: center;
    gap: 2rem;
    margin-top: 3rem;
  
}
    /*
    .gallery-popup {
    position: fixed;
    top: 30%;
    left: 0px;
    width: 415px;
    height: 500px;
    background:rgba(0,0,0,1);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
} */
    #wp{
  position: fixed;
  z-index: 5 !important;
  bottom: 7%;
  left:82%;
  width: 50px;
  height: 50px;
}

 #uparrow{
  position: fixed;
  z-index: 5 !important;
  bottom: 1.5%;
  left:85%;
 }



    .welcome-text {
        font-size: 1rem;
        padding: 10px;
    
}
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonials-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 1rem;
    }
    .about-vision p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: justify;
}
}
