:root{
--cream:#F4EBDD;
--navy:#062A72;
--orange:#F26A1B;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,sans-serif;
background:var(--cream);
color:var(--navy);
line-height:1.6;
padding-top:90px;
}

.container{
max-width:1400px;
width:92%;
margin:auto;
}

/* ======================
HEADER
====================== */

.site-header{
position:fixed;
top:0;
left:0;
right:0;
z-index:1000;
background:rgba(255,255,255,.95);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(0,0,0,.05);
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
height:90px;
}

.logo{
font-size:32px;
font-weight:700;
text-decoration:none;
color:var(--navy);
}

.logo span{
color:var(--orange);
}

.main-nav{
display:flex;
align-items:center;
gap:35px;
}

.main-nav a{
text-decoration:none;
color:var(--navy);
font-weight:600;
transition:.2s;
}

.main-nav a:hover{
opacity:.7;
}

/* ======================
BUTTONS
====================== */

.btn{
display:inline-block;
background:var(--orange);
color:white;
padding:16px 30px;
border-radius:999px;
text-decoration:none;
font-weight:600;
transition:.2s;
}

.btn:hover{
transform:translateY(-2px);
opacity:.9;
}

/* ======================
HERO
====================== */

.hero{
min-height:85vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:80px 20px;
}

.hero-content{
max-width:1000px;
}

.hero h1{
font-size:96px;
line-height:.95;
letter-spacing:-2px;
margin-bottom:25px;
}

.hero p{
font-size:24px;
opacity:.75;
margin-bottom:40px;
}

/* ======================
LATEST EVENT
====================== */

.latest-section{
padding:100px 0;
}

.latest-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.latest-image img{
width:100%;
height:550px;
object-fit:cover;
border-radius:24px;
display:block;
background:#ddd;
}

.latest-content h2{
font-size:48px;
margin-bottom:20px;
}

.latest-content p{
font-size:18px;
margin-bottom:12px;
}

/* ======================
ABOUT
====================== */

.about-section{
padding:120px 0;
text-align:center;
}

.about-section h2{
font-size:56px;
margin-bottom:25px;
}

.about-section p{
max-width:900px;
margin:auto;
font-size:22px;
line-height:1.8;
}

/* ======================
CONTACT
====================== */

.contact-section{
padding:120px 0;
text-align:center;
}

.contact-section h2{
font-size:56px;
margin-bottom:25px;
}

.contact-section p{
font-size:20px;
margin-bottom:12px;
}

/* ======================
EVENTS PAGE
====================== */

.events-page{
padding:80px 0;
}

.page-title{
font-size:72px;
text-align:center;
margin-bottom:60px;
}

.events-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(380px,1fr));
gap:30px;
}

.event-card{
background:white;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.event-card img{
width:100%;
height:280px;
object-fit:cover;
display:block;
}

.event-body{
padding:25px;
}

.event-body h3{
font-size:28px;
margin-bottom:15px;
}

.event-body p{
margin-bottom:10px;
}

/* ======================
EVENT DETAIL PAGE
====================== */

/* ======================
EVENT DETAIL PAGE
====================== */

.event-detail{
padding:40px 0 80px;
}

.event-detail .container{
max-width:900px;
margin:auto;
}



.event-title{
font-size:48px;
line-height:1.1;
margin-bottom:20px;
}

.event-meta{
font-size:18px;
opacity:.8;
margin-bottom:10px;
}

.event-description{
margin-top:30px;
font-size:18px;
line-height:1.8;
}

.event-cover-wrapper{
overflow:hidden;
border-radius:24px;
margin-bottom:35px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.event-cover{
width:100%;
height:450px;
object-fit:cover;
object-position:center;
display:block;
}



/* ======================
TICKETS
====================== */

.tickets-section{
margin-top:80px;
padding-top:50px;
border-top:1px solid rgba(0,0,0,.08);
}

.tickets-section h2{
font-size:42px;
margin-bottom:30px;
}

.ticket-grid{
display:grid;
grid-template-columns:
repeat(auto-fill,minmax(300px,1fr));
gap:25px;
}

.ticket-card{
background:white;
padding:35px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.25s;
}

.ticket-card:hover{
transform:translateY(-4px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.ticket-card h3{
font-size:28px;
margin-bottom:15px;
}

.ticket-price{
font-size:48px;
font-weight:700;
color:var(--orange);
margin-bottom:15px;
line-height:1;
}

.ticket-card p{
margin-bottom:10px;
opacity:.8;
}

.ticket-card .btn{
margin-top:15px;
width:100%;
text-align:center;
}


/* ======================
FOOTER
====================== */

.site-footer{
margin-top:120px;
padding:80px 0;
background:white;
border-top:1px solid rgba(0,0,0,.05);
}

.site-footer .container{
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
}

.footer-brand h3{
font-size:34px;
margin-bottom:10px;
}

.footer-brand span{
color:var(--orange);
}

.footer-brand p{
opacity:.7;
}

.footer-links{
display:flex;
gap:25px;
}

.footer-links a{
text-decoration:none;
color:var(--navy);
font-weight:600;
}

.footer-copy{
opacity:.6;
}

/* ======================
MOBILE
====================== */

@media(max-width:1000px){

.hero h1{
font-size:64px;
}

.latest-grid{
grid-template-columns:1fr;
}

.event-title{
font-size:48px;
}

}

@media(max-width:768px){

.header-inner{
flex-direction:column;
justify-content:center;
gap:15px;
height:auto;
padding:20px 0;
}

.main-nav{
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

body{
padding-top:130px;
}

.hero h1{
font-size:48px;
}

.hero p{
font-size:18px;
}

.latest-content h2{
font-size:36px;
}

.about-section h2,
.contact-section h2{
font-size:40px;
}

.about-section p{
font-size:18px;
}

.page-title{
font-size:48px;
}

.event-title{
font-size:38px;
}

.event-cover{
height:220px;
}

.event-title{
font-size:36px;
}

.site-footer .container{
flex-direction:column;
text-align:center;
}

.footer-links{
flex-wrap:wrap;
justify-content:center;
}



.event-cover{
height:240px;
}

}

```css
/* ======================
CARDS
====================== */

.card{
background:white;
padding:35px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ======================
FORMS
====================== */

form{
width:100%;
}

label{
display:block;
font-weight:600;
margin-top:20px;
margin-bottom:8px;
}

input,
select,
textarea{
width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
background:white;
outline:none;
transition:.2s;
}

input:focus,
select:focus,
textarea:focus{
border-color:var(--orange);
box-shadow:0 0 0 3px rgba(242,106,27,.15);
}

/* ======================
CHECKOUT
====================== */

.checkout-card{
background:white;
padding:40px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.checkout-summary{
background:
linear-gradient(
135deg,
var(--navy),
#0a3b9e
);

color:white;
padding:35px;
border-radius:20px;
margin-bottom:35px;
}

.checkout-summary h2{
font-size:42px;
margin-bottom:10px;
}

.checkout-summary p{
opacity:.85;
}

.checkout-price{
font-size:52px;
font-weight:700;
margin-top:15px;
line-height:1;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.checkout-total{
margin-top:30px;
padding-top:20px;
border-top:1px solid rgba(0,0,0,.08);
font-size:30px;
font-weight:700;
}

.checkout-submit{
width:100%;
margin-top:30px;
font-size:18px;
padding:18px;
}

/* ======================
ORDER SUCCESS
====================== */

.ticket-box{
padding:25px;
border:1px solid rgba(0,0,0,.08);
border-radius:18px;
margin-bottom:25px;
text-align:center;
background:white;
}

.ticket-box img{
display:block;
margin:auto;
}

/* ======================
MESSAGES
====================== */

.success{
background:#e8f8ed;
color:#146c2e;
padding:18px;
border-radius:12px;
margin-bottom:20px;
}

.error{
background:#fdeaea;
color:#b42318;
padding:18px;
border-radius:12px;
margin-bottom:20px;
}

/* ======================
MOBILE ADDITIONS
====================== */

@media(max-width:768px){

.form-grid{
grid-template-columns:1fr;
}

.checkout-summary h2{
font-size:30px;
}

.checkout-price{
font-size:38px;
}

.checkout-card{
padding:25px;
}

}
```
