/* Color Palette and Variables */
:root {
    --dark-grey: #243223;
    --light-grey-blue: #7f9a99;
    --sand-color: #818181;
    --orange-accent: #e47c47;
    --white: #b1c0cd;


}

body {
    font-family: Oswald;
    font-size: 1.2rem;
    margin: 0;
    background-color: var(--white);
    color: var(--dark-grey);
    line-height: 1.2: smooth;
}

h1, h2, h3 { font-family: var(--font-serif); }
h1 { font-size: 3rem; margin-bottom: 0.5rem; }
h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--orange-accent);
    display: inline-block;
    padding-bottom: 0.5rem;
}




/* --- NAVIGATION BAR --- */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5%;
    background: var(--dark-grey);
    color: var(--white);
    position: fixed;
    width: 90%;
    z-index: 1000;
}
nav .logo { 
    letter-spacing: 2px;
}
nav ul { 
    list-style: none; 
    display: flex; 
    margin: 0; 
    padding: 0; 
}
nav ul li a { 
    color: var(--white); 
    text-decoration: none; 
    padding: 10px 15px; 
    transition: color 0.3s;
}
nav ul li a:hover { 
    color: var(--light-grey-blue); 
    border-bottom: 2px solid var(--light-grey-blue); 
}

.logo {
    font-size: 40px;
}

.phone-number a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 25px;
}
.phone-number a:hover { 
    color: var(--light-grey-blue); 
}

/* Sections */
.section { 
    padding: 35px 250px 80px 250px; 
}
.dark-bg { 
    background-color: var(--dark-grey); 
    color: var(--white); 
}
.light-bg { 
    background-color: var(--white); 
    color: var(--dark-grey); 
}




/* --- CAROUSEL --- */

.hero-section {
    height: 75vh; 
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.carousel-container { 
    width: 100%; 
    height: 100%; 
    position: relative; 
}

.carousel-slide {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    opacity: 0; 
    transition: opacity 1.5s ease-in-out; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    background-blend-mode: overlay; 
    background-color: rgba(74, 106, 108, 0.4); 
}

.carousel-slide.active { 
    opacity: 1; 
}

.hero-content { 
    color: var(--white); 
    text-align: center; 
    z-index: 2; 
    padding-top: 10px; 
}




/* --- BUTTONS --- */

.btn {
    background-color: var(--orange-accent); 
    color: var(--white); 
    padding: 12px 30px; 
    text-decoration: none; 
    border: none; 
    font-weight: bold; 
    cursor: pointer; 
    display: inline-block; 
    margin-top: 1rem; 
    transition: background-color 0.3s;
}
.btn:hover { 
    background-color: #d46b3e; 
}


.closed {
    color: #ef4444; /* red */
}





/* --- INTRO SECTION GRID --- */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Left column 1 part, Right column 2 parts */
    gap: 40px;
    text-align: left;
}
.hours-column ul { 
    list-style: none; 
    padding: 0; 
}
.hours-column li { 
    padding: 5px 0; 
}


/* --- GALLERY GRID --- */

.grid-gallery { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 25px; 
}

.gallery-item { 
    background: none; 
    padding: 30px 0px 0px 0px; 
    border-radius: 4px; 
    color: var(--dark-grey); 
    text-align: center; 
}

/* Gallery images */
.gallery-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* LIGHTBOX OVERLAY */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* LIGHTBOX IMAGE */
#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Fade-in active image */
#lightbox.show img {
  opacity: 1;
}

/* ARROWS */
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  user-select: none;
}

.lb-arrow.left {
  left: 30px;
}

.lb-arrow.right {
  right: 30px;
}

.lb-arrow:hover {
  color: #c8a34a;
}

/* Lock background scroll */
body.no-scroll {
  overflow: hidden;
}

/* CLOSE BUTTON */
.lb-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.lb-close:hover {
  color: #c8a34a;
}






/* --- ABOUT GRID --- */

.about-grid {
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 20px;
    text-align: center;
    align-items: center; /* Vertically center content */
}

.about-image {
    max-width: 50%;
    height: auto;
    border-radius: 8px; /* Optional: adds soft corners */
    object-fit: cover; /* Ensures image covers its space nicely */
}

.about-content p {
    margin-bottom: 5rem;
}

.about-wrapper::after {
    content: "";
    display: table;
    clear: both; /* Ensures container wraps around the floated image */
}

.about-image-float {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    float: right; /* Image floats RIGHT, text wraps around it on the LEFT */
    margin-left: 20px; /* Space between image and text */
    margin-bottom: 20px; 
}

.about-content-float {
    text-align: left;
}





/* --- CONTACT (GRID + MAP) --- */

.contact-grid {
    display: grid;
    grid-template-columns: .75fr 1fr; /* Two equal columns */
    gap: 10px;
    text-align: left;
    align-items: center; /* Vertically center content */
}

.contact-info h3 {
    font-size: 2.0rem;
    margin-bottom: 10px;
}

.contact-info address {
    font-size: 2.0rem;
    font-style: normal; /* Remove default italic for address tag */
    margin-bottom: 10px;
}

.contact-info p a {
    color: var(--dark-grey);
    text-decoration: underline;
}


/* --- OFFICIAL SECTION --- */


.official-section {
    margin-top: 60px;
    border-top: 1px solid var(--light-grey-blue);
    padding-top: 40px;
}

.official-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: var(--orange-accent);
}

.official-images {
    display: flex;
    justify-content: center;
    gap: 150px;
}

.official-img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.official-sectiontop {
    margin-top: 10px;
    border-top: 1px solid var(--light-grey-blue);
    padding-top: 10px;
}

.official-imagestop {
    display: flex; 
    justify-content: center;
    gap: 150px;
}

.official-imgtop {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}



/* --- MEDIA --- */

@media (max-width: 768px) {
        h1 { font-size: 2rem; }
        .section { padding: 60px 5%; }
        section {scroll-margin-top: 300px;}

        nav { flex-direction: column; align-items: flex-start; padding: 15px 5%; }
        nav .logo { margin-bottom: 10px; }
        nav ul { flex-direction: column; width: 100%; }
        nav ul li a { padding: 5px 0; display: block; }
        .phone-number { margin-top: 10px; }
        .phone-number a { padding: 0; }
    
        .intro-grid { grid-template-columns: 1fr; }
    

        .about-image-float {
          float: none; 
          margin-left: 0; 
         margin-bottom: 15px;
         max-width: 100%;
        }

        .contact-grid { 
        grid-template-columns: 1fr; 
        }

        .official-images {
        flex-direction: column;
        align-items: center;
         }
}



/* --- FOOTER --- */
footer {
    background-color: var(--dark-grey);
    color: var(--white);
    text-align: center;
    padding: 20px 5%;
    font-size: 0.9rem;
    border-top: 1px solid var(--orange-accent);
}
