* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1000;

    /* GOLD SHADOW */
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}



.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #d4af37;
    padding: 5px 10px;
}

.nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #ccc;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: 0.3s ease;
     font-family: 'Playfair Display', serif;
}

.nav a:hover {
    color: #d4af37;
}

.book-btn {
    border: 1px solid #d4af37;
    padding: 8px 18px;
    color: #d4af37;
}

.book-btn:hover {
    background: #d4af37;
    color: #000;
}
body {
    background: #000;
    color: #eee;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.gold {
    color: #d4af37;
}

/* ANIMATIONS */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.typing-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

/* HERO */
.hero {
    padding-top: 120px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    line-height: 1.0;
    letter-spacing: 2px;
}

.tagline {
    letter-spacing: 8px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    color: #aaa;
}

.subtitle {
    margin: 30px auto;
    max-width: 800px;
    letter-spacing: 1px;
    font-size: 1.0rem;
    font-family: 'Inter', sans-serif;
    
}

.buttons {
    margin-top: 50px;
}

.btn {
    padding: 14px 30px;
    margin: 10px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #d4af37;
}

.primary {
    background: #d4af37;
    color: #000;
}

.primary:hover {
    background: #28a745;
    color: black;
}

.secondary {
    color: #d4af37;
}

/* SECTION 2 */
.section-two {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    background: #d4af37;
}

.image-container {
    width: 80%;
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0;
    transition: all 1s ease;
}

.image-container img {
    width: 100%;
    display: block;
}

/* POP OUT ACTIVE */
.image-container.active {
    transform: scale(1);
    opacity: 1;
}

/* SECTION 3 */
.section-three {
    padding: 50px 5% 100px 10%;
}

.about-container {
    display: flex;
    align-items: center; /* center vertically */
    gap: 60px;
}

/* About children start hidden; JS will stagger their fadeUp animation */
.about-image,
    .about-text {
        opacity: 0;
        transform: translateY(20px);
        padding-left: 10px;
        padding-top: 36px; /* push text down slightly */
        max-width: 720px; /* constrain the body width for better balance */
    }

.about-image img {
    width: 500px;
}

.about-text {
    padding-left: 60px;
    padding-top: 50px; /* push text down slightly */
    max-width: 800px; /* constrain the body width */
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.05;
    margin: 10px 0 20px;
    max-width: 420px;
}

.about-text p {
        max-width: 450px;
        line-height: 1.6;
        margin-bottom: 1.4rem; /* add vertical spacing between paragraphs */
        font-size: 16px;
}

 .about-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 8px;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 500;
}

.affiliation-bar {
  background: linear-gradient(90deg, #ecb535ff, #d4af37);
  overflow: hidden;
  white-space: nowrap;
  padding: 30px 0;
}

.affiliation-track {
  display: inline-block;
  animation: scrollLeft 40s linear infinite;
}

.affiliation-track span {
  margin: 0 60px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  color: #050505ff;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.performance-section {
  background: #0a0a0a;
  padding: 100px 10%;
  color: #fff;
  text-align: center;
}

.section-label {
  color: #c6a14a;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 60px;
}

.section-title span {
  color: #c6a14a;
}

.highlight-list {
  max-width: 900px;
  margin: auto;
}

.highlight-item {
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
  text-align: left;
  transition: 0.3s ease;
}

.highlight-item:hover {
  border-color: #c6a14a;
  transform: translateY(-3px);
}


.gallery-section {
  background: linear-gradient(180deg, #ecb535ff, #d4af37);
  padding: 100px 10%;
  text-align: center;
}

.gallery-title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* GENERAL */

section{
padding:100px 10%;
background:#000;
color:white;
}

.section-tag{
color:#d4af37;
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
}

.section-title{
font-size:42px;
margin:10px 0 40px;
font-family: 'Playfair Display', serif;
color: white;
}

.section-title span{
color:#d4af37;
}

.highlights .section-title {
    color: white;
}


/* =================================
LEARN SECTION
================================= */

.learn-container{
display:flex;
align-items:center;
gap:180px;
flex-wrap:wrap;
justify-content:center;
}

/* shift whole learn section slightly right for better alignment */
.learn-section {
    padding-right: 180px;
}

.learn-card{
background:#111;
padding:40px;
border-radius:10px;
text-align:center;
width:250px;
}

.learn-card h3 {
    color: #d4af37;
}

.learn-icon{
font-size:40px;
margin-bottom:10px;
}

.learn-text{
max-width:600px;
}

.learn-text h2{
font-size:36px;
margin:10px 0 20px;
font-family: 'Playfair Display', serif;
}

.learn-text span{
color:#d4af37;
}

.learn-text p{
color:#ccc;
margin-bottom:15px;
line-height:1.6;
}


/* =================================
VIDEO SECTION
================================= */

.performance-section{
text-align:center;
}

.video-wrapper{
margin-top:40px;
display:flex;
justify-content:center;
}

.video-wrapper iframe{
width:900px;
height:500px;
border-radius:10px;
border:none;
}


/* =================================
BOOKING SECTION
================================= */

.booking-section{
text-align:center;
}

.booking-text{
max-width:600px;
margin:auto;
margin-bottom:50px;
color:#ccc;
}

.contact-grid{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-bottom:40px;
}

.contact-card{
    background:#111;
    padding:10px;
    padding-top:30px;
    padding-bottom:30px;
    border-radius:10px;
    width:230px;
    /* center all text inside the card for balance */
    text-align: center;
}

.contact-card h4{
    color:#d4af37;
    margin-bottom:10px;
    /* keep heading centered (parent already centers) */
}


/* =================================
BUTTON
================================= */

.gold-btn{
display:inline-block;
padding:12px 28px;
border:1px solid #d4af37;
color:#d4af37;
text-decoration:none;
margin-top:15px;
transition:0.3s;
}

.gold-btn:hover{
background:#008000;
color:black;
}

.gold-btn.large{
padding:16px 40px;
}


/* =================================
FOOTER
================================= */

.site-footer{
background:#050505;
padding-top:80px;
}

.footer-container{
display:flex;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
padding:0 10% 60px;
}

.footer-brand{
max-width:350px;
}

.footer-brand h3{
color:#d4af37;
margin-bottom:15px;
font-family: 'Playfair Display', serif;

}

.footer-links ul,
.footer-social ul{
list-style:none;
padding:0;
}

.footer-links li,
.footer-social li{
margin-bottom:8px;
}

.footer-links a,
.footer-social a{
text-decoration:none;
color:#ccc;
}

.footer-links a:hover,
.footer-social a:hover{
color:#c8a96a;
}



.footer-bottom{
border-top:1px solid rgba(255,255,255,0.15);
margin-top:5px;
padding-top:20px;
width:100%;
text-align:center;
color:#888;
font-size:14px;
}

/* ==============================
MOBILE RESPONSIVE
============================== */

/* ================================
HEADER RESPONSIVE
================================ */

@media (max-width: 768px){

header{
padding:15px 6%;
}

.logo{
display:flex;
align-items:center;
gap:8px;
}

.logo img{
height:32px;
}

nav ul{
display:none;
}

.menu-toggle{
display:block;
font-size:24px;
cursor:pointer;
color:white;
}

nav.active ul{
display:flex;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:#000;
padding:20px 0;
}

nav.active ul li{
text-align:center;
margin:10px 0;
}

}

/* ================================
HERO RESPONSIVE
================================ */

@media (max-width: 768px){

.hero{
padding:120px 6% 80px;
text-align:center;
}

.hero h1{
font-size:34px;
line-height:1.3;
}

.hero p{
font-size:15px;
max-width:100%;
margin:auto;
}

.hero-buttons{
flex-direction:column;
gap:15px;
margin-top:30px;
}

}

/* ================================
EBOOK SECTION MOBILE
================================ */

@media (max-width: 768px){

.learn-container{
flex-direction:column;
text-align:center;
gap:40px;
}

.learn-card{
width:100%;
max-width:280px;
margin:auto;
}

.learn-text{
max-width:100%;
}

.learn-text h2{
font-size:28px;
}

.learn-text p{
font-size:15px;
}

}

/* ================================
GLOBAL MOBILE SPACING
================================ */

@media (max-width: 768px){

section{
padding:70px 6%;
}

.section-title{
font-size:30px;
}

}




@media (max-width: 1024px){

.video-wrapper iframe{
width:100%;
height:420px;
}

.learn-container{
flex-direction:column;
text-align:center;
}

.contact-grid{
flex-direction:column;
align-items:center;
}

.footer-container{
flex-direction:column;
text-align:center;
}

}


@media (max-width: 768px){

section{
padding:70px 6%;
}

.section-title{
font-size:32px;
}

.learn-text h2{
font-size:28px;
}

.video-wrapper iframe{
height:300px;
}

.gold-btn{
padding:10px 22px;
}

}


@media (max-width: 480px){

.section-title{
font-size:26px;
}

.booking-text{
font-size:14px;
}

.contact-card{
width:100%;
}

}

@media (max-width:768px){

nav ul{
display:none;
}

.menu-toggle{
display:block;
cursor:pointer;
font-size:22px;
color:white;
}

}


/* =========================
GLOBAL MOBILE FIX
========================= */

*{
box-sizing:border-box;
}

img{
max-width:100%;
height:auto;
display:block;
}

.container,
.learn-container,
.about-container,
.hero-container,
.booking-section,
.performance-section{
width:100%;
max-width:1200px;
margin:0 auto;
}

@media (max-width:768px){

section{
padding:70px 20px;
text-align:center;
}

p{
max-width:100%;
margin-left:auto;
margin-right:auto;
}

}

/* =========================
GLOBAL MOBILE FIX
========================= */

*{
box-sizing:border-box;
}

img{
max-width:100%;
height:auto;
display:block;
}

.container,
.learn-container,
.about-container,
.hero-container,
.booking-section,
.performance-section{
width:100%;
max-width:1200px;
margin:0 auto;
}

@media (max-width:768px){

section{
padding:70px 20px;
text-align:center;
}

p{
max-width:100%;
margin-left:auto;
margin-right:auto;
}

}


/* =========================
HERO MOBILE FIX
========================= */

@media (max-width:768px){

.hero{
padding:120px 20px 80px;
text-align:center;
}

.hero h1{
font-size:34px;
line-height:1.3;
max-width:500px;
margin:auto;
}

.hero p{
font-size:15px;
max-width:450px;
margin:20px auto;
}

.hero-buttons{
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
}

}

/* =========================
EBOOK SECTION FIX
========================= */

.learn-container{
display:flex;
align-items:center;
justify-content:center;
gap:80px;
}

@media (max-width:768px){

.learn-container{
flex-direction:column;
text-align:center;
gap:40px;
}

.learn-card{
margin:auto;
width:100%;
max-width:260px;
}

.learn-text{
max-width:550px;
margin:auto;
}

.learn-text h2{
font-size:28px;
}

}

/* =========================
VIDEO FIX
========================= */

.video-wrapper{
width:100%;
max-width:900px;
margin:40px auto;
}

.video-wrapper iframe{
width:100%;
height:500px;
border-radius:10px;
}

@media (max-width:768px){

.video-wrapper iframe{
height:280px;
}

}

/* =========================
BOOKING FIX
========================= */

.contact-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

@media (max-width:768px){

.contact-grid{
flex-direction:column;
align-items:center;
}

.contact-card{
width:100%;
max-width:280px;
}

}

/* =========================
FOOTER FIX
========================= */

.footer-container{
display:flex;
justify-content:space-between;
gap:60px;
max-width:1200px;
margin:auto;
}

@media (max-width:768px){

.footer-container{
flex-direction:column;
align-items:center;
text-align:center;
gap:40px;
}

}

/* ==============================
DESKTOP HEADER RESTORE
============================== */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
align-items:center;
}

nav ul li a{
text-decoration:none;
font-weight:500;
}

.menu-toggle{
display:none;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
height:40px;
width:auto;
}

/* ==============================
MOBILE HEADER
============================== */

@media (max-width:768px){

header{
padding:15px 6%;
}

nav ul{
display:none;
}

.menu-toggle{
display:block;
font-size:24px;
cursor:pointer;
}

nav.active ul{
display:flex;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:#000;
padding:20px 0;
}

nav.active ul li{
text-align:center;
margin:12px 0;
}

}


footer{
position:relative;
z-index:100;
}

.footer-social a{
position:relative;
z-index:101;
}

html{
scroll-behavior:smooth;
}


/* =========================================
MASTER MOBILE OVERRIDE
========================================= */

@media (max-width:768px){

/* GLOBAL */

section{
padding:70px 20px;
text-align:center;
}

img{
max-width:100%;
height:auto;
}

.section-title{
font-size:30px;
line-height:1.3;
}

/* HEADER */

.header{
padding:15px 6%;
}

.nav{
display:none;
}

.menu-toggle{
display:block;
font-size:24px;
cursor:pointer;
color:white;
}

/* HERO */

.hero{
height:auto;
padding:140px 20px 80px;
}

.hero-content h1{
font-size:36px;
line-height:1.2;
}

.tagline{
letter-spacing:4px;
font-size:11px;
}

.subtitle{
font-size:15px;
max-width:100%;
}

.buttons{
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
margin-top:30px;
}

/* ABOUT */

.about-container{
flex-direction:column;
gap:40px;
text-align:center;
}

.about-image img{
width:100%;
max-width:320px;
margin:auto;
}

.about-text{
padding:0;
max-width:100%;
}

.about-text h2{
font-size:32px;
max-width:100%;
}

.about-text p{
max-width:100%;
font-size:15px;
}

/* LEARN SECTION */

.learn-section{
padding-right:20px;
}

.learn-container{
flex-direction:column;
gap:40px;
}

.learn-card{
width:100%;
max-width:260px;
margin:auto;
}

.learn-text{
max-width:100%;
}

.learn-text h2{
font-size:28px;
}

/* PERFORMANCE */

.performance-section{
padding:80px 20px;
}

.section-title{
font-size:32px;
}

/* VIDEO */

.video-wrapper{
width:100%;
}

.video-wrapper iframe{
width:100%;
height:250px;
}

/* GALLERY */

.gallery-grid{
grid-template-columns:1fr;
gap:20px;
}

.gallery-grid img{
height:250px;
}

/* CONTACT */

.contact-grid{
flex-direction:column;
align-items:center;
gap:25px;
}

.contact-card{
width:100%;
max-width:260px;
}

/* FOOTER */

.footer-container{
flex-direction:column;
text-align:center;
gap:40px;
padding:0 20px 60px;
}

.footer-brand{
max-width:100%;
}

.footer-links ul,
.footer-social ul{
padding:0;
}

.footer-bottom{
font-size:14px;
padding-top:15px;
}

}