*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "Times New Roman", Times, serif;
}

body{
background:#f8f7f3;
color:#333;
line-height:1.6;
}


/* NAVBAR */

.navbar{
width:100%;
position:fixed;
top:0;
left:0;
z-index:1000;
padding:15px 0;

background:rgba(255,255,255,0.85);
backdrop-filter:blur(8px);
-webkit-backdrop-filter:blur(8px);

border-bottom:1px solid rgba(0,0,0,0.06);
}

.nav-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 20px;
}

.logo{
height:45px;
}

.nav-links{
list-style:none;
display:flex;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:#111;
font-weight:500;
transition:color 0.2s ease;
}

.nav-links a:hover{
color:#c9a227;
}


/* HERO */

.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
overflow:hidden;
}

.hero::before{
content: "";
position: absolute;
inset: 0;
background: url("images/hero.jpg") center center / cover no-repeat;
z-index: -1;
}

.hero-content{
background:rgba(255,255,255,0.18);
backdrop-filter:blur(8px);
-webkit-backdrop-filter:blur(8px);
padding:35px 45px;
border-radius:8px;
border:1px solid rgba(255,255,255,0.35);
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.hero-title{
font-size:3.5rem;
font-weight:600;
margin-bottom:25px;
color:#C00000;
letter-spacing:1px;
text-shadow:0 2px 8px rgba(0,0,0,0.25);
}

.btn{
display:inline-block;
padding:12px 28px;
background:#c9a227;
color:white;
text-decoration:none;
font-weight:bold;
border-radius:4px;
transition:all 0.25s ease;
}

.btn:hover{
background:#b8951f;
transform:translateY(-2px);
}


/* CONTENT SECTIONS */

.content-section{
padding:140px 20px;
}

.content-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
gap:80px;
}

.content-image img{
width:100%;
border-radius:6px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.content-text{
flex:1;
}

.content-text h2{
margin-bottom:15px;
color:#c9a227;
font-size:1.8rem;
}

.content-text p{
max-width:500px;
font-size:1.05rem;
line-height:1.7;
}

.content-image{
flex:1;
}


/* ALTERNATING LAYOUT */

.alt .content-container{
flex-direction:row-reverse;
}

.content-section:nth-child(even){
  background:#f4f2ed;
}


/* CONTACT PAGE */

.contact-section{
max-width:800px;
margin:auto;
padding:140px 20px 60px 20px;
text-align:center;
}

.contact-section h1{
margin-bottom:20px;
color:#c9a227;
}

.contact-info{
margin-top:30px;
font-size:1.1rem;
}

.contact-info p{
margin:10px 0;
}


/* YOUR RIGHTS PAGE */

.content-container.single-column{
    display:block;
    max-width:850px;
}

.content-text h1{
    color:#c9a227;
    font-size:2.8rem;
    margin-bottom:25px;
}

.content-text ul{
    margin:20px 0 35px 25px;
}

.content-text li{
    margin-bottom:12px;
    line-height:1.7;
}

/* MOBILE */

@media (max-width:768px){

.hero-content h1{
font-size:2.2rem;
}

.hero-title{
line-height:1.2;
}

.hero-break{
display:block;
}

.content-container{
flex-direction:column;
gap:30px;
}

.content-text{
order:1;
}

.content-image{
order:2;
}

.alt .content-container{
flex-direction:column;
}

.content-section{
padding:90px 20px;
}

.nav-links{
gap:15px;
}

}
