/*
Theme Name: AltVia Experiences
Author: AltVia
Description: Custom travel theme for AltVia Experiences
Version: 1.0
*/

body{
margin:0;
font-family: Arial, sans-serif;
color:#333;
}

header{
background:#111;
color:white;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.hero{
height:90vh;
background:url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero h1{
font-size:60px;
}

.section{
padding:60px 10%;
}

.destinations{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
box-shadow:0 10px 20px rgba(0,0,0,0.1);
border-radius:8px;
overflow:hidden;
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card h3{
padding:15px;
margin:0;
}

footer{
background:#111;
color:white;
text-align:center;
padding:40px;
}