html, body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: #333333;
    background-color: #fffbe0;
}

/* Header / Navbar */
header {
    background: transparent;
    color: #fdffd0;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 80px;
}

.logo span {
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    background: rgba(0,0,0,0.2);
    padding: 10px 20px;
    border-radius: 15px;
}

nav ul li a {
    color: #fdffd0;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
}

/* Dropdown */
nav ul li {
    position: relative;
}

nav > ul {
    display: flex;
}

.dropdown-menu {
    display: block;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 10px;
    min-width: 180px;
    padding: 10px 0;
    z-index: 10000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    white-space: nowrap;
}

.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: #fdffd0;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f39c12;
    color: #111111;
}

.dropdown > a::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fdffd0;
    border-bottom: 2px solid #fdffd0;
    transform: rotate(45deg) translateY(-4px);
    transform-origin: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(-135deg) translateY(-2px);
    border-color: #f39c12;
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    background: url('images/dunes.jpg') center/cover no-repeat;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0), #fffbe0);
    z-index: 2;
}

.about-hero h1 {
    position: relative;
    z-index: 3;
    font-size: 3.5rem;
    font-family: 'Montserrat', serif;
    font-weight: 700;
    color: #fdffd0;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
}

/* Content Section */
.about-content {
    background-color: #fdfad4;
    color: #7a6041;
    padding: 100px 10%;
    text-align: center;
}

.about-content h2 {
    font-family: 'Montserrat', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #5c432a;
    position: relative;
}

.about-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 15px auto 0;
    background: linear-gradient(90deg, #f39c12, #d4af37);
    border-radius: 2px;
}

.about-content p {
    margin: 0 auto 40px;
    max-width: 700px;
    line-height: 1.7;
    color: #5c432a;
    font-size: 1.1rem;
}

/* Feature Cards */
.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature-box {
    background: #fffaf0;
    padding: 30px;
    width: 300px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.feature-box i {
    font-size: 36px;
    color: #f39c12;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #5c432a;
    font-family: 'Montserrat', serif;
}

.feature-box p {
    color: #7a6041;
}

/* Last heading spacing */
.about-content h2:last-of-type {
    margin-top: 60px;
}