body{
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url('../Discover-Images/1.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    height:45vh;
    min-height:400px;

    margin:0 10%;
    border-radius:18px;

    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:white;
    box-shadow:0 10px 35px rgba(0,0,0,0.25);
}

.hero-overlay{
    max-width:900px;
    padding:20px;
}

.hero h1{
    font-size:5rem;
    margin-bottom:15px;
    text-shadow:0 3px 10px rgba(0,0,0,0.4);
}

.hero p{
    font-size:1.3rem;
    color: white;
    opacity:0.75;
}

/* =========================
   GENERAL SECTIONS
========================= */

section:not(.hero){
    padding:40px 10%;
    background:transparent;
}

.container{
    width:100%;
    max-width:none;
    margin:auto;
}

section h2{
    text-align:center;
    font-size:2.4rem;
    color:#1c355e;
    margin-bottom:35px;
    position:relative;
}

section h2::after{
    content:'';
    display:block;
    width:80px;
    height:4px;
    background:#f8c146;
    margin:15px auto 0;
    border-radius:20px;
}

section p{
    font-size:1.08rem;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

/* =========================
   CONTENT CARDS
========================= */

.about-content,
.story-section,
.hospitality-section,
.closing-section,
.values-section{
    background:transparent;
}

.about-content{
    margin-top:40px;
    position:relative;
    z-index:10;
}

.about-content .container,
.story-section .container,
.hospitality-section .container,
.closing-section .container{
    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    padding:50px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,0.18);
}

.dif {
	color:white;
}

/* =========================
   VALUES SECTION
========================= */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:40px;
}

.feature-card{
    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.feature-card h3{
    color:#1c355e;
    margin-bottom:15px;
    font-size:1.4rem;
}

.feature-card p{
    margin:0;
}

/* =========================
   SIGNATURE
========================= */

.signature{
    text-align:center;
    margin-top:50px;
    padding-top:30px;
    border-top:2px solid rgba(255,255,255,0.6);
}

.signature h3{
    color:#1c355e;
    margin-bottom:10px;
    font-size:1.6rem;
}

.signature p{
    color:#777;
    font-style:italic;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .hero{
        height:45vh;
        margin:0 5%;
    }

    .hero h1{
        font-size:2.6rem;
    }

    .hero p{
        font-size:1.1rem;
    }

    section:not(.hero){
        padding:35px 5%;
    }

    .about-content .container,
    .story-section .container,
    .hospitality-section .container,
    .closing-section .container{
        padding:30px;
        margin-top: -50px;
    }

    section h2{
        font-size:2rem;
    }

    section p{
        font-size:1rem;
    }
}