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

body{
    font-family:'Lato',sans-serif;
    background:#f8f7f2;
    color:#444;
    line-height:1.6;
}

h1,h2,h3,h4{
    font-family:'Playfair Display',serif;
}

.h1center{
    text-align: center;
    font-size: xx-large;
    font-family:'Playfair Display',serif;
}
.pcenter1{
    text-align: center;
    font-size: large;
}
.pcenterbotom{
    margin-bottom: 2%;
}
.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

header{
    border-bottom:4px double #d6d3d1;
    background:#f8f7f2;
    position:static ;
    top:0;
    z-index:10;
}

.header-title{
    font-size:100px;
    font-weight:900;
    text-align:center;
    letter-spacing:-2px;
    color:#111;
    margin-top:20px;
}

.subtitle{
    text-align:center;
    color:#777;
    font-style:italic;
    font-size: x-large;
    margin:10px 0 20px;
}

nav{
    border-top:1px solid #d6d3d1;
}

nav ul{
    display:flex;
    justify-content:center;
    gap:40px;
    padding:15px;
    list-style:none;
    flex-wrap:wrap;
}

nav a{text-decoration:none;
    text-transform:uppercase;
    font-weight:bold;
    font-size:14px;
    letter-spacing:2px;
    color:#777;
}

nav a:hover{
    color:#000;
}

main{
    padding:40px 0;
}

.grid{display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.card{
    background:#f1f0ec;
    padding:25px;
    border:2px dashed #d6d3d1;
}

.section-title{font-size:28px;
    padding-bottom:10px;
    margin-bottom:20px;
}

.section-titlesponsor{
    font-size:45px;
    margin-bottom:5px;
}

.social a{
    display:block;
    margin:10px 0;
    text-decoration:none;
    color:#444;
    font-weight:bold;
}

.social a:hover{
    color:black;
}

footer{
    border-top:1px solid #d6d3d1;
    text-align:center;
    padding:25px;color:#777;
    margin-top:40px;
}

.sponsor-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.sponsor{
    text-align:center;
    background:white;
    padding:20px;
    border:1px solid #ddd;
    border-radius:8px;
}

 .sponsor a{
color: black;
text-decoration: none;
}

.sponsor a:visited{
color: black;
}

.sponsor a:hover{
color: black;
text-decoration: none;
}

.sponsor a:active{
color: black;
}

.sponsor img{
    width:120px;
    height:120px;
    object-fit:contain;
    border-radius:50%;
    filter:grayscale(100%);
    transition:.3s;
}

.sponsor img:hover{
    filter:none;
}

form input,form textarea{
    width:100%;
    padding:10px;
    margin-top:5px;
    border:1px solid #ccc;
    border-radius:4px;
    margin-bottom:15px;
}

button{background:#333;color:white;padding:12px;border:none;cursor:pointer;width:100%;border-radius:4px;}
button:hover{background:#555;}
.about-wrap{display:flex;gap:40px;align-items:center;flex-wrap:wrap;}
.about-wrap img{width:200px;border-radius:50%;}
.blog-post{background:white;border:1px solid #ddd;padding:20px;margin-bottom:20px;border-radius:6px;}
.blog-post h3{margin-bottom:10px;}
iframe{max-width:100%;}
@media(max-width:900px){
.grid{grid-template-columns:1fr;}
.header-title{font-size:40px;}
.sponsor-grid{grid-template-columns:1fr 1fr;}
}

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

.about-title{
text-align:center;
font-size:48px;
font-weight:900;
margin-bottom:10px;
}

.about-subtitle{
text-align:center;
font-style:italic;
color:#777;
margin-bottom:40px;
}

.about-card{
background:#ffffff70;
border:1px solid #ddd;
padding:40px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.about-content{
display:flex;
gap:40px;
align-items:center;
flex-wrap:wrap;
}

.about-content img{
width:180px;
height:180px;
object-fit:cover;
border-radius:50%;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.about-text h2{
font-size:28px;
margin-bottom:10px;
}

.about-text p{
margin-bottom:15px;
}