/* =====================================================
   TROPHY SAFARIS V4
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;

    background-color: #d8c3a5;

    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.08) 1px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.04) 1px, transparent 2px);

    background-size: 12px 12px, 18px 18px;
}
/*
.about,
.gallery-preview,
.accommodation-preview,
.hosts,
.pricelist {
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(2px);

    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

/*
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;

    background: #e8dcc2 url("Pics/cork.jpg") repeat;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #A5846A;  <!--#f4f1e8-->
}*/

/* =====================================================
   HEADER
   ===================================================== */
header {
    background:
        linear-gradient(
            to bottom,
            #d8c3a5 0%,
            #75593d 50%,
            #d8c3a5 100%
        );

    border-bottom: 3px solid #caa96b;
    box-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 15px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #3f2f20;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
    height: 100vh;

    background:
        linear-gradient(
            rgba(0,0,0,0.10),
            rgba(0,0,0,0.10)
        ),
        url('/Pics/2019/46.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: grey;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: normal;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-block;
    padding: 15px 32px;
    background: #d4af37;  <!--#A5846A;-->
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    background: #b89224;
    transform: translateY(-2px);
}

/* =====================================================
   SECTIONS
   ===================================================== */

section {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #2f3b22;
}

.about,
.gallery-preview,
.booking,
.pricelist {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.about p {
    max-width: 900px;
    margin: auto;
    font-size: 1.1rem;
}

/* =====================================================
   HOSTS
   ===================================================== */

.hosts {
    background: #ece5d5;
}

.host-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.host {
    width: 380px;
    margin: 0 auto;

    background: white;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.host img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.host h3 {
    padding: 3px;
    text-align: center;
}

/* =====================================================
   ACCOMMODATION
   ===================================================== */

.accommodation-preview {
    background: transperent;
}

.accommodation-grid {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 20px;
}

.accommodation-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* =====================================================
   GALLERY
   ===================================================== */

.year-buttons a {
    display: inline-block;
    padding: 10px 20px;
    background: #caa96b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.gallery-slideshow img,
#accommodationImage {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    object-fit: cover;
    object-position: center center;
}

#galleryImage {
width: 100%;
max-width: 1000px;
height: 550px;
object-fit: cover;
object-position: center center;
display: block;
margin: 0 auto;
}


.year-buttons a:hover {
    background: #4e623a;
}

/* =====================================================
   PRICE LIST
   ===================================================== */

.pricelist {
    background: #ece5d5;
}

/* =====================================================
   BOOKING
   ===================================================== */

.booking {
    background: #2f3b22;
    color: white;
}

.booking h2 {
    color: white;
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 25px;
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 900px) {

    nav ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .logo img {
        height: 50px;
    }
}

@media (max-width: 600px) {

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 15px;
    }
	
	/*	
	.host-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.host {
    width: 400px;
    text-align: center;
}

.host img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 10px;
}
.host h2 {
    margin-top: 10px;
	margin-bottom: 10px;
}

.host h3 {
    margin-top: 5px;
	margin-bottom: 5px;
}
*/

}
