@font-face {
  font-family: 'Fira Sans';
  src: url('assets/fonts/FiraSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ========================================================
   1. GLOBAL VARIABLES - Easily change site-wide styles here
   ======================================================== */
:root {
    --primary-color: #d67b8d; /* Your brand pink/accent */
    --text-dark: #333333;
    --bg-dark: #1a1a1a;
    --bg-light: #f8f9fa;
    --font-main: 'Fira Sans', sans-serif;
    --section-spacing: 4rem; /* Adjust this to change vertical space */
}

body {
    font-family: 'Fira Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Ensure images scale correctly */
.img-fluid { max-width: 100%; height: auto; }


.logo-container {
  width: 400px;  /* Increase from your current width */
  height: auto;
  align-items: center; /* Vertically centers the logo and text */

}

.logo-container img {
  height: 80px; /* Increase this value to make it bigger */
  width: auto;  /* Maintains the original aspect ratio */
  align-items: center; /* Vertically centers the logo and text */
}


.header-container {
    display: flex;
    flex-direction: column; /* Stacks them vertically by default */
    align-items: center;    /* Centers both title and image horizontally */
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.header-container h2 {
    margin-bottom: 0 !important; /* Removes the extra gap under the title */
    width: 100%;                 /* Ensures the title takes full width */
    text-align: center;
}

/* On Desktop: If you want them side-by-side, use this media query */
@media (min-width: 768px) {
    .header-container {
        flex-direction: row;     /* Puts them side-by-side */
        justify-content: center; /* Keeps the whole group centered */
    }
}

.about-title {
    margin: 0; /* Remove default margins to keep alignment clean */
}

.site-logo {
    height: 100px;
    width: auto;
    /* Remove absolute positioning if it exists; 
       flexbox will handle the placement */
}

/* On Mobile: Stack them */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column-reverse; /* Logo stacks above title */
        text-align: center;
    }
    
    .site-logo {
        margin-bottom: 15px; /* Adds space between stacked logo and title */
    }
}


/* ========================================================
   2. HERO SECTION
   ======================================================== */
.hero {
    height: 100dvh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* ========================================================
   3. DISCOVER & ACCOMMODATION (Cards & Grid)
   ======================================================== */
.card {
    border: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;

}

.card:hover {
    transform: translateY(-5px);
}

.discover-item, .accommodation-item {
    margin-bottom: 2rem;
}


/* ========================================================
   4. YOGA & SOUNDHEALING SECTION
   ======================================================== */
.yoga-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.yoga-card h5 {
    color: var(--primary-color);
    font-weight: bold;
}

/* Add margin to the bottom of the column for mobile stacking */
@media (max-width: 767px) {
    .col-md-4 {
        margin-bottom: 1.5rem; /* Adjust value as needed */
    }
}

/* Accommodation Gallery */
#acc-carousel .carousel-item img {
    height: 450px;
    object-fit: cover; /* Ensures images fill the space without distortion */
}

/* Feature Icons Styling */
.icon-box {
    font-size: 1.5rem;
    min-width: 40px;
}

@media (max-width: 768px) {
    #acc-carousel .carousel-item img {
        height: 250px; /* Smaller height for mobile devices */
    }
}


/* ========================================================
   5. UTILITY CLASSES
   ======================================================== */
   .fa {
  padding: 15px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa:hover {
  opacity: 0.8;
}

   
   
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #b56272;
    border-color: #b56272;
}

/* Ensure map placeholder takes full width */
#map-placeholder {
    width: 100%;
    border-radius: 8px;
}

/* Responsive spacing for smaller screens */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-spacing {
        padding: 2rem 0;
    }
}