body {
    margin: 0;
    font-family: "Trebuchet MS", sans-serif;
    background-color: #f5efe6;
    color: black;
}

header {
    background-color: #b22222;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
}


/* Navigation sections */

.nav-left {
    align-items: flex-start;
}

.nav-right {
    align-items: flex-end;
}

nav a {
    color: gold;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

nav a:hover {
    color: white;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1px;
    background: gold;
    transition: width 0.3s ease;
}

.nav-right a::after {
    left: auto;
    right: 0;
}

nav a:hover::after {
    width: 100%;
}

.nav-left,
.nav-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo img {
    width: 90px;
    margin-bottom: 15px;
}

.logo h1 {
    color: gold;
    font-size: 38px;
    letter-spacing: 4px;
    margin: 0;
}

/* HERO IMAGE SECTION */
.hero {
    position: relative;
    background: 
        linear-gradient(
            rgba(120, 0, 0, 0.75),
            rgba(80, 0, 0, 0.75)
        ),
        url("images/HomeBG.jpg") center/cover no-repeat;

    padding: 140px 20px;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto 50px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.6);
}

.hero button {
    background: gold;
    color: black;
    padding: 16px 45px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.hero button:hover {
    background: #ffd700;
    transform: translateY(-3px);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero button:hover {
    background: #ffd700;
    transform: translateY(-3px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    /* ombre gradient overlay */
    background: linear-gradient(
        to bottom,
        rgba(120,0,0,0.85) 0%,
        rgba(120,0,0,0.65) 40%,
        rgba(0,0,0,0.45) 100%
    );

    z-index: 1;
}

.hero-overlay h1 {
    font-family: "Trebuchet MS", sans-serif;
    font-size: 48px;
    letter-spacing: 3px;
    color: #ffffff;

    /* makes text pop */
    text-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

.hero-overlay p {
    font-size: 20px;
    color: #f5f5f5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}


.section {
    padding: 20px 10px;
}

.section h1,
.section h2 {
    color: #b22222;
}

.lion-container{
  display:flex;
  align-items:center;
  gap:40px;
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
}

.lion-image{
  flex:1;
}

.lion-image img{
  width:100%;
  height:auto;
  border-radius:20px;
  object-fit:cover;
}

.lion-text{
  flex:1;
}

.lion-text h2{
  margin-bottom:20px;
}

.lion-text p{
  line-height:1.6;
}

.performances {
    text-align: center;
    padding: 0 0;
}


/* Photo Row */

.performance-photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.performance-photos img {
    width: 30%;
    min-width: 220px;
    border-radius: 12px;
    object-fit: cover;
}

/* Text Section */

.performance-text {
    max-width: 700px;
    margin: auto;
}

.performance-text h2 {
    color: #b22222;
    margin-bottom: 20px;
}

/* Button */

.gallery-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: #c9a227;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.gallery-button:hover {
    background: #e0b933;
}

/* Hire Section */

.hire-section{
    text-align:center;
    padding:80px 20px;
}

.hire-section h2{
    font-size:48px;
    font-weight:700;
    color:#555;
    max-width:900px;
    margin:auto;
    margin-bottom:40px;
}

/* Contact Button */

.hire-button{
    display:inline-block;
    padding:18px 40px;
    border:3px solid #777;
    color:#555;
    text-decoration:none;
    font-weight:700;
    letter-spacing:4px;
    border-radius:8px;
    transition:0.3s;
}

.hire-button:hover{
    background:#b22222;
    border-color:#b22222;
    color:white;
}

/* Image */

.hire-image{
    margin-top:60px;
}

.hire-image img{
    width:85%;
    max-width:650px;
    border-radius:10px;
    transition:transform 0.4s ease;
}

.hire-image img:hover{
    transform:scale(1.03);
}

.card {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

button {
    background-color: #d4af37;
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #b22222;
    color: white;
}

table{
    width:85%;
    max-width:900px;
    margin:40px auto;
    border-collapse:collapse;
}

table, th, td{
    border:2px solid #b22222;
}

th{
    background-color:#d4af37;
}

th, td{
    padding:16px;
    text-align:center;
}

form {
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

form input,
form select,
form textarea {
    width: 100%;
    text-align: left;
}

input, select, textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border-radius:10px;
    border:1px solid #ccc;
    box-sizing:border-box;
}

/* =========================
   MOBILE RESPONSIVE FIX
========================= */

@media (max-width: 900px) {

    
    header {
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
    }

	.nav-left,
    .nav-right {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
        margin-top: 25px;
    }
    
    nav a {
        font-size: 14px;
        letter-spacing: 2px;
    }
    

    /* Stack logo properly */
    .logo {
        flex-direction: column;  /* stack image + text */
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
    }

     .logo img {
        width: 80px;
    }

	.logo h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .logo span {
        display: block;
        font-size: 22px;
    }
    
    .hero {
        height: 350px;
        padding: 20px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-overlay p {
        font-size: 16px;
    }
    
    .lion-container{
    	flex-direction:column;
    	text-align:center;
  	}
}

footer {
    background-color: #b22222;
    color: gold;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* ABOUT SECTION */

.about-section{
    text-align:center;
}

.about-card{
    max-width:800px;
    margin:40px auto;
    padding:40px;
}

.about-card img{
    width:100%;
    max-width:600px;
    border-radius:15px;
    margin-bottom:25px;
}

.about-text{
    font-size:18px;
    line-height:1.7;
}

.about-title{
    font-size:42px;
    margin-bottom:30px;
}

/* alternating section spacing */

.lion-container{
    margin-top:40px;
}

/* improve about text */

.about-text{
    font-size:18px;
    line-height:1.8;
    max-width:650px;
    margin:auto;
}

/* slightly larger images */

.lion-image img{
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* BOOKING FORM */

.booking-form-card{
    background:white;
    max-width:600px;
    margin:50px auto;
    padding:35px;
    border-radius:20px;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

.booking-form-card h2{
    text-align:center;
    margin-bottom:20px;
}

.packages-title{
    text-align:center;
    margin-top:40px;
}

/* FACTS PAGE */

.facts-title{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
}

.facts-section{
    padding:60px 20px;
    text-align:center;
}

/* Grid layout */

.facts-grid{
    display:flex;
    flex-direction:column;
    gap:40px;
    max-width:800px;
    margin:auto;
}

/* Individual cards */

.fact-card{
    background:white;
    padding:25px;
    border-radius:18px;
    box-shadow:0 6px 18px rgba(0,0,0,0.12);
    transition:0.3s;
}

.fact-card:hover{
    transform:translateY(-5px);
}

.fact-card h3{
    color:#b22222;
    margin-bottom:15px;
    text-align:center;
}

.fact-card ul{
    padding-left:20px;
    line-height:1.7;
    list-style-position: inside;
  	display: inline-block;

}

.fact-img{
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:12px;
    margin-bottom:15px;
}

/* GALLERY PAGE */

.gallery-section{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
    text-align:center;
}

.gallery-title{
    font-size:40px;
    color:#b22222;
    margin-bottom:20px;
}

.gallery-intro{
    max-width:800px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:1.7;
}

/* Masonry style gallery */

.gallery-grid{
    column-count:3;
    column-gap:15px;
}

.gallery-grid img{
    width:100%;
    margin-bottom:15px;
    border-radius:12px;
    transition:0.3s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

/* Responsive */

@media (max-width:900px){
    .gallery-grid{
        column-count:2;
    }
}

@media (max-width:500px){
    .gallery-grid{
        column-count:1;
    }
}

/* CONTACT PAGE */

.contact-section {
  text-align: center;
  margin-top: 80px;
}


/* Hero image */

.contact-hero{
    max-width:1000px;
    margin:20px auto 0 auto;
    padding:0 20px;
}

.contact-hero img{
    width:80%;
    height:auto;
    display:block;
    margin:100px auto 0 auto;
    border-radius:20px;
}

/* Titles */

.contact-title{
    font-size:42px;
    margin-top:10px;
    margin-bottom:20px;
    letter-spacing:2px;
}

.message-title{
    margin-top:50px;
}

/* Contact card */

.contact-card{
    max-width:600px;
    margin:30px auto 20px auto;
    font-size:18px;
    line-height:1.9;
    padding:30px;
}

.contact-card p{
    margin:10px 0;
}

/* Contact form tweaks */

.booking-form-card form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* Shared form container (matches booking form) */

.form-container{
    background:white;
    max-width:600px;
    margin:50px auto;
    padding:35px;
    border-radius:20px;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

/* Form inputs */

.form-container input,
.form-container textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border-radius:10px;
    border:1px solid #ccc;
    box-sizing:border-box;
}

/* Button */

.form-container button{
    background:#d4af37;
    color:black;
    padding:14px;
    border:none;
    border-radius:30px;
    font-weight:bold;
    cursor:pointer;
    margin-top:10px;
}

.form-container button:hover{
    background:#b22222;
    color:white;
}

.form-container h2{
    text-align:center;
    color:#b22222;
    margin-bottom:20px;
}
