body{
    font-family:"Georgia", serif;
    background-color:#3b0a0a; /* deep theater red */
    color:#f4e7d3; /* warm cream text */
    margin:0;
}


/* HEADER */

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:#1a0000; /* dark burgundy */
    border-bottom:3px solid #c9a34a; /* gold trim */
    margin-bottom:0;
}

.logo img{
    width:110px;
}

.nav a{
    margin-left:25px;
    text-decoration:none;
    color:#f4e7d3;
    font-weight:500;
}

.nav a:hover{
    color:#ffd700;
}

.signup-btn{
    background:#c9a34a;
    color:#1a0000;
    padding:8px 16px;
    border-radius:6px;
    font-weight:bold;
}


/* HERO IMAGE */

.hero{
    width:100%;
    margin:0;
    padding:0;
}

.hero-image{
    width:100%;
    height:auto;
    display:block;
}


/* MAIN CONTENT */

main{
    margin-top:0;
}

.container{
    width:80%;
    margin:auto;
}

section{
    padding:50px 0;
    border-bottom:1px solid rgba(201,163,74,0.2);
}

h1, h2, h3{
    color:#ffd700;
    letter-spacing:1px;
}


/* CARD GRID */

.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:20px;
}

.card{
    background:#1a0000;
    padding:20px;
    border-radius:10px;
    border:1px solid #c9a34a;
    box-shadow:0 0 12px rgba(0,0,0,0.7);
    transition:transform 0.3s, box-shadow 0.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.8);
}

.card img{
    width:100%;
    border-radius:8px;
    margin-bottom:10px;
    transition:transform 0.3s;
}

.card img:hover{
    transform:scale(1.05);
}

.card h3{
    margin-top:10px;
    color:#ffd700;
}


/* FORMS */

form{
    background:#1a0000;
    padding:25px;
    border-radius:10px;
    width:320px;
    border:1px solid #c9a34a;
}

input{
    width:100%;
    padding:8px;
    margin-top:5px;
    margin-bottom:15px;
    border:none;
    border-radius:4px;
}


/* BUTTONS */

button{
    background:#c9a34a;
    border:none;
    padding:10px;
    font-weight:bold;
    cursor:pointer;
    margin-top:10px;
}

button:hover{
    background:#ffd700;
    color:#1a0000;
}


/* DETAILS DROPDOWN */

details{
    background:#1a0000;
    padding:15px;
    margin-bottom:10px;
    border-radius:8px;
    border:1px solid #c9a34a;
}

summary{
    font-weight:bold;
    cursor:pointer;
    color:#ffd700;
    font-size:18px;
}

details p{
    margin-bottom:12px;
}


/* FOOTER */

footer{
    background:#1a0000;
    text-align:center;
    padding:20px;
    margin-top:40px;
    border-top:3px solid #c9a34a;
}


/* MEDIA */

audio{
    margin-top:15px;
}


/* SMOOTH SCROLL */

html{
    scroll-behavior:smooth;
}