
    @font-face {
        font-family: 'Cormorant Garamond';
        src: url('assets/fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype-variations');
        font-weight: 300 700;
        font-display: swap;
    }
  
  
    /* BODY */
  
    html {
        scroll-behavior: smooth;
        font-size: 16px;
        background-color: #f0d499;
    }
    html, body {
        margin: 0; 
        padding: 0;
        overflow-x: hidden; 
        
    }
    body::before {
        
        content: '';
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: min(100vw, 1440px);
        height: 100vh;
        background: url('assets/images/backgrounds/CruZenNYCBackground.jpg') no-repeat center bottom / cover;
        z-index: -1;
        pointer-events: none; /* just in case */
    }
/*
    body::before {
        content: '';
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: url('assets/images/backgrounds/CruZenNYCBackground.jpg') no-repeat center bottom;
        background-size: cover;
        z-index: -1;
    }
*/
    body {
        margin: 0; 
        padding: 0;
        overflow-x: hidden;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 400;
        font-variant-numeric: lining-nums tabular-nums;
    }
  
  
  
    /* GOOGLE CAPTCHA */
  
    .grecaptcha-badge { visibility: hidden; } 
  
  
  
    /* HEADER */
  
    .site-header {
        position: fixed; top: 0; left: 0; right: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(6px);
        transform: translateY(-100%);
        transition: transform 0.8s ease;
        z-index: 1000;
    }
    .site-header.show {
        transform: translateY(0);
    }
    .header-container {
        display: flex;
        align-items: center;
        justify-content: flex-start; 
        flex-wrap: nowrap;
        max-width: 900px;
        margin: 0 auto;
        height: 60px;
        padding: 0 20px;
    }
    .logo-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        color: #fff;
    }
    .logo-link img {
        height: 30px;
    }
    .logo-link span {
        font-size: 1.2rem;
        font-weight: bold;
    }
    .main-nav {
        margin-left: auto;
        display: flex;
    }
    .main-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1.0rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .main-nav ul li a {
        color: #eee;
        text-decoration: none;
        padding: 0.25rem 0;
        position: relative;
    }
    .main-nav ul li a::after {
        content: '';
        position: absolute; bottom: 2px; left: 0;
        width: 0; height: 2px;
        background: #ffcb05;
        transition: width 0.3s;
    }
    .main-nav ul li a:hover::after {
        width: 100%;
    }
    .contact-header {
        display: inline-block;        
        background: #ffcb05;
        color: #000;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        margin-left: 1.5rem;
        transition: background 0.3s;
    }
    .contact-header:hover {
        background: #e6b800;
    }
    .navbar-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        height: 30px;
        width: 30px;
        cursor: pointer;
        padding: 10px 10px;
    }
    .navbar-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 2px;
    }
    .header-menu-list {
        display: flex;
    }
    .header-menu-list .menu-list {
        display: none;
        align-items: flex-start;
        justify-content: flex-start; 
        flex-wrap: wrap;
        gap: 20px;
        max-width: 100px;
        padding: 0 20px;
        padding-bottom: 20px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(6px);
        flex-direction: column;
        position: absolute;
        left: 0px;
        top: 70px;
    }
    .menu-list a { 
        color: #fff; 
        text-decoration: none;
    }
    .menu-list.show {
        display: flex;
    }
    @media (max-width: 768px) {
        .site-header.show {
            opacity: 1; 
            pointer-events: auto;
            color: #fff;
        }
        .header-container {
            flex-wrap: wrap;
            justify-content: flex-start;
            padding: 10px 10px;
            gap: 10px;
            height: auto;
        }
        .menu-list {
            display: flex;
            font-size: 1.2em;
        }
        .logo-link img {
            height: 25px;
        }
        .logo-link span {
            font-size: 1rem; 
        }
        .navbar-toggle {
            display: flex;
        }
        .contact-header { 
            margin: 0;
            margin-left: auto;
            margin-right: 10px;
        }
        .main-nav {
            display: none;
            margin: 10px 0 0;
            margin-left: 0;  
            width: 100%;
            justify-content: center;
        }
        .main-nav ul {
            justify-content: center;
        }
    }
  
  
    /* HERO */

    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        text-align: center;
        position: relative;
        background: none;
        overflow: hidden;
        box-sizing: border-box;
        margin: 50px auto;
    }
    .hero-logo, .intro-video, .trip {
        width: 100%;
        height: auto;
        max-width: 600px;
        max-height: 337px;
        object-fit: contain;
        padding: 0 auto;
        z-index: 1;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .hero {
            margin: 50px auto;
        }
        .hero-logo {
            width: 85%;
            max-width: 400px;
            padding-top: 0px;
        }
        .intro-video, .trip {
	        max-width: 90vw;
        }	
    }


    /* GENERAL SECTIONS */
    
    .rounded-box-section {
        width: 100%;
        box-sizing: border-box;
/*         max-width: 1000px; */
        margin: 130px auto;
/*         padding: 30px 20px; */
        backdrop-filter: blur(6px);
/*         border-radius: 20px;     */
        
        
    }
    .rounded-box-section .section-inner {
        max-width: 1000px;   /* content limit */
        margin: 0 auto;      /* center horizontally */
/*         padding: 2rem;*/       /* space around content */
        padding: 30px 20px;
    }
    
    
    
    .rounded-box-section h2 {
        font-size: 3rem;    
        margin-bottom: 40px;
        text-align: center;
        letter-spacing: 1px;
    }
    .rounded-box-section h3 {
        font-size: 1.5rem;
        font-weight: 200;
        margin-bottom: 20px;
        text-align: center;
    }
    .rounded-box-section p {    
        font-size: 1.35rem;   
    }
    @media (max-width: 768px) {
        .rounded-box-section {
            margin: 60px auto;
            padding: 5px 20px;
        }
        .rounded-box-section h2 {
            margin-bottom: 10px;    
            font-size: 2.2rem;
        }
        .rounded-box-section h3 {        
            margin-bottom: 10px;
        }
    }


    /* PACKAGES HEADER */

    #services {
        background: rgba(255,255,255,0.55);
        color: #222;
        margin-top: 50vh;
    }
    #services h2 {
        text-align: center;
    }
    .services-tagline {
        font-size: 2.0rem;
        font-weight: 500;
        margin: 0;
        color: #000;
        line-height: 1.2;
    }
    .services-call {
        font-size: 2rem;
/*        margin: 12px 0 0; */

        color: #000;
    }
    .phone-highlight {
        padding: 4px 20px 4px 20px;
        border-radius: 4px;
        color: #555 !important;
        background: #ffcb05;        
        text-decoration: none !important;
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .services-tagline {
            font-size: 1.6rem;
        }
        .services-call {
            font-size: 1.6rem;
        }
    }
    
    
    /* PACKAGES MENU */
    
    .tabbed-services .tab-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .tabbed-services .tab-button {
        padding: 10px 20px;
        border: none;
        background: rgba(255,255,255,0.2);
        color: #000;
        font-size: 1rem;  
        font-weight: 600;
        border-radius: 8px;
        flex: 1 0 18%;
        max-width: 18%;
        cursor: pointer;
        transition: background 0.3s;
    }
    .tabbed-services .tab-button.active {
        background: #ffcb05;
        color: #000;
    }
    @media (max-width: 768px) {
        .tabbed-services .tab-button {
            flex: 1 0 45%;
            max-width: 45%;
            padding: 8px 10px;
        }
    }
    
    
    /* PACKAGES OPTIONS */
    
    .tabbed-services .tabs-wrapper {
        position: relative;
        min-height: 200px; 
        margin-bottom: 50px;
    }
    .tabbed-services .tabs-wrapper h3 {
        font-weight: 600;   
    }
    .tabbed-services .tab-content {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.98);
        transition: opacity 0.4s ease, transform 0.4s ease;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;  
    }
    .tabbed-services .tab-content.visible {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
        position: relative;
    }
    .tabbed-services .tab-content.hidden {
        display: none;
    }
    .tab-content h3 {
        text-align: left;
    }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        list-style: none;
        gap: 2rem;
    }
    .services-grid > :nth-child(1) { grid-column: 1; grid-row: 1; }
    .services-grid > :nth-child(2) { grid-column: 2; grid-row: 1; }
    .services-grid > :nth-child(3) { grid-column: 3; grid-row: 1; }
    .services-grid > :nth-child(4) { grid-column: 1; grid-row: 2; }
    .services-grid > :nth-child(5) { grid-column: 2; grid-row: 2; }
    .services-grid > :nth-child(6) { grid-column: 3; grid-row: 2; }
    .package-item {
        padding: 15px;
        backdrop-filter: blur(1px);
        border-radius: 0px;
        margin: 0px;
    }
    .package-item strong {
        display: block;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .price {
        font-size: 3rem;
        font-weight: bold;
        line-height: 1;
    }
    .duration {
        font-size: 1.1rem;
        color: #555;
        margin-left: 2px;
    }
    .joke {
        font-style: italic;
        color: #d32f2f;
        font-size: 1.4rem !important;
    }
    .package-item.highlight {
        background: rgba(255, 255, 255, 0.5);
        /*backdrop-filter: blur(6px);*/
        border: 2px solid #ccc; 
        color: #000;               
    }
    .package-item.recommended {
        background: rgba(242,206,150,0.5);
        border: 2px solid #e15f1e;
        color: #000;
    }
    .package-item p {
        font-size: 1.1rem;         
        margin-top: 8px;
    }
    .package-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .package-item:hover {
        transform: translateY(-5px); /* lift */
        box-shadow: 0 10px 15px rgba(255, 165, 0, 0.3);
    }
    .package-item.with-image .package-content {
        display: flex;
        /*align-items: flex-start;*/
        gap: 20px;
        
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .package-image {
        max-width: 100px; 
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
    }
    .package-tall-image {
        max-width: 100px;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
    }
    .package-text {
        flex: 1;
        padding: 0;
        margin: 0;
    }
    .custom-package-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    .custom-package-form textarea {
        padding: 10px;
        font-size: 1rem;
        border-radius: 6px;
        border: 1px solid #ccc;
        resize: vertical;
    }
    .custom-package-form button {
        align-self: flex-start;
        background: #000;
        color: #ffcb05;
        padding: 10px 20px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }
    .contact-form.yellow-theme {
        max-width: 600px;        /* ← adjust as you like */
        margin: 0 auto;          /* centers it */
        box-sizing: border-box;  /* ensures padding stays inside the max-width */
    }
    .contact-form.yellow-theme input[type="radio"],
    .contact-form.yellow-theme input[type="checkbox"] {
        margin-right: 0.5rem;
        vertical-align: middle;
    }
    @media (max-width: 768px) {
        .package-item.with-image .package-content {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .tab-content h3 {
            flex-direction: column;
            align-items: center;
        }
        .tab-content p {
            flex-direction: column;
            align-items: center;
            text-align: left;
        }
        .package-image {
            margin-bottom: 10px;
        }
        .package-text {
            width: 100%;
        }
        .package-text .joke {
            text-align: center; 
        }
        .services-grid { 
            grid-template-columns: 1fr; 
        }
        .services-grid > :nth-child(1) { grid-column: 1; grid-row: 1; }
        .services-grid > :nth-child(2) { grid-column: 1; grid-row: 2; }
        .services-grid > :nth-child(3) { grid-column: 1; grid-row: 3; }
        .services-grid > :nth-child(4) { grid-column: 1; grid-row: 4; }
        .services-grid > :nth-child(5) { grid-column: 1; grid-row: 5; }
        .services-grid > :nth-child(6) { grid-column: 1; grid-row: 6; }
    }

    
    
    






/* Services list */


/* Instructor */
.instructor-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.instructor-profile h3 {
    text-align: left;
}
.instructor-photo {
  width: 200px;
  border-radius: 50%;
  flex-shrink: 0;
}
.instructor-info {
  flex: 1;
  text-align: left;
}
.instructor-info p {
    font-weight: 400;
}


/* Contact form */
.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}
.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form button {
  background: #ffcb05;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #e6b800;
}

/* Footer */
footer {
  text-align: center;
  padding: 0px 0;
  color: #fff;
}
.footer-inner {
  background: rgba(0,0,0,0.7);
  padding: 10px;
}
















  


#instructor {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}
#instructor h2 {
  color: #ffcb05;
}
.instructor-hiring-box {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 30px;
  border-left: 6px solid #ffcb05;
  border-radius: 12px;
}
.instructor-hiring-box h3 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #ffcb05;
}
.instructor-hiring-box p {
  font-size: 1.1rem;
  color: #fff;
}





#reviews {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;

}
.reviews-highlight-box {
    background: rgba(255,255,255,0.1);
    border-left: 14px solid #a5b452;
/*     padding: 20px 60px 20px 30px; */
    border-radius: 12px;
/*
    margin-bottom: 40px;
    margin-left: 40px;
    margin-right: 40px;
*/
    margin-bottom: 40px;
    box-sizing: border-box;
/*
    min-width: 80%;
    width: 100%;
*/
}
.reviews-highlight-box p {
    max-width: 90%;
    margin: 20px auto;
}
/*

.reviews-highlight-box p {
    font-style: italic;
}
@media (max-width: 768px) {
    .reviews-highlight-box {
        border-left: 8px solid #a5b452; 
        margin-left: 10px;
        margin-right: 10px;    
    }
}
*/




#faq {
  background: rgba(255, 255, 255, 0.55);
  color: #000;
}
#faq h2 {
  color: #222;
}


.faq-item {
    margin-bottom: 30px;
    text-align: left;
}
.faq-item h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #222;
  text-align: left;
}
.faq-item p,
.faq-item li {
  font-size: 1.2rem;
  color: #000;
  font-weight: 400;
}
.faq-item a {
  color: #0057b7;
  text-decoration: underline;
}
.faq-highlight-box {
  background: rgba(255,255,255,0.8);
  border-left: 6px solid #ffcb05;
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}
.faq-highlight-box h3 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #000;
}
.faq-highlight-box ol {
  padding-left: 1.2rem;
  font-size: 1.2rem;
  color: #000;
}
.faq-answer {
  display: none;
  margin-top: 0.5em;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question {
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
}

.faq-item.active .faq-question::after {
  content: '-';
}








#contact {
  max-width: 800px;
  background: rgba(255, 203, 5, 0.55);
  color: #000;
  padding: 30px 20px;
}
#contact h2 {
  color: #000;
}

.contact-form.yellow-theme .form-group label {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
}

.contact-form.yellow-theme input,
.contact-form.yellow-theme textarea {
  width: 90%;
  padding: 12px 14px;
  border: 2px solid #000;
  border-radius: 8px;
  font-size: 1.1rem;
  background: #fffce6;
  color: #000;
}

.contact-form.yellow-theme input:focus,
.contact-form.yellow-theme textarea:focus {
  outline: none;
  border-color: #333;
  background: #fff;
}

.contact-form.yellow-theme button {
  background: #000;
  color: #ffcb05;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form.yellow-theme button:hover {
  background: #222;
}








/* Contact */





/* === Instructor: en móvil, imagen arriba y texto abajo === */
@media (max-width: 768px) {
  #instructor .instructor-profile {
    display: flex;
    flex-direction: column;    /* apila foto y texto */
    align-items: center;       /* centra la foto */
    text-align: center;        /* centra el texto */
    gap: 20px;                 /* espacio entre ambos */
  }

  /* Opcional: añade un poco de margen arriba del texto */
  #instructor .instructor-info {
    margin-top: 0;             /* ya se controla con gap */
  }

  /* Asegura que la foto mantenga su tamaño */
  #instructor .instructor-photo {
    width: 200px;              /* o el tamaño que prefieras */
    margin: 0 auto;
  }
}




/* Confirmation & Error Pages */
.confirm-section,
.error-section {
  width: 90%;
  max-width: 800px;
  margin: 60px auto;
  margin-top: 120px;
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: #000;
  text-align: center;
}
.confirm-section h2,
.error-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.confirm-section img,
.error-section img {
  width: 240px;
  max-width: 100%;
  border-radius: 16px;
  margin: 20px auto;
}
.confirm-section p,
.error-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto;
}
.confirm-section a.button,
.error-section a.button {
  display: inline-block;
  margin-top: 30px;
  background: #ffcb05;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
}
.confirm-section h2 {
  color: #222;
}
.error-section h2 {
  color: #b00000;
}

#instructor .instructor-info h3,
#instructor .instructor-info p {
  color: #fff;
}

.contact-form.yellow-theme .form-group .checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;    /* space between box and text */
}

.contact-form.yellow-theme input[type="checkbox"] {
  transform: scale(1.7);
  transform-origin: top left;
  margin: 0;             /* keep gap handled by .checkbox-label */
  /* Optional: tweak the gap if it feels off
  margin-right: 0.5rem;
  */
  /* ensure flex alignment still works */
  display: inline-block;
}

/* ── Scale up select dropdowns via transform ── */
.contact-form.yellow-theme select {
  transform: scale(1.4);
  transform-origin: top left;
  display: inline-block;
  margin-bottom: 0.25rem; /* keep a little breathing room below */
}

.contact-form.yellow-theme .checkbox-label {
  margin-bottom: 0;
  margin-left: 20px;
}
.contact-form.yellow-theme input[type="checkbox"],
.contact-form.yellow-theme input[type="radio"] {
  width: auto;
}

/* 1) Ensure label is centering its contents */
.contact-form.yellow-theme .checkbox-label {
  display: inline-flex;
  align-items: center;   /* vertical centering */
  gap: 0.5rem;
}

/* 2) Scale from the box’s vertical middle, and baseline-align it */
.contact-form.yellow-theme input[type="checkbox"] {
  transform: scale(1.7);
  transform-origin: left center;  /* center-vertically */
  vertical-align: middle;         /* fallback baseline centering */
  margin: 0;                       /* keep spacing via the gap */
}

#custom_form .checkbox-label {
  margin-left: 0;      /* kill the 20px indent coming from the global rule */
  padding-left: 0;
}

/* if your inputs themselves also got shifted by a margin, reset it too */
#custom_form input[type="checkbox"] {
  margin: 0;           /* remove any default/user agent margin */
}

#custom_form .destination-group {
  margin-left: 2rem;    /* tweak as needed to line up under your “Include Long Distance” checkbox */
}






