@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100..900&family=Caveat:wght@400..700&display=swap');

:root {
    --mehari-yellow: #F9D71C;
    --broken-white: #FAF9F6;
    --anthracite: #2F2F2F;
    --earth-olive: #5A5A40;
    --earth-sand: #A68B67;
    --font-serif: "Cormorant Garamond", serif;
    --font-sans: "Inter", sans-serif;
    --font-hand: "Caveat", cursive;
}

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

body {
    background-color: var(--broken-white);
    color: var(--anthracite);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(250, 249, 246, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(47, 47, 47, 0.05);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--mehari-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--mehari-yellow);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--mehari-yellow);
    color: var(--anthracite);
    border: none;
}

.btn-primary:hover {
    background: var(--anthracite);
    color: var(--mehari-yellow);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--anthracite);
    color: var(--anthracite);
}

.btn-outline:hover {
    background: var(--anthracite);
    color: var(--mehari-yellow);
    transform: scale(1.05);
}

/* Playful Elements */
.playful-border {
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
}

.handwritten {
    font-family: var(--font-hand);
    font-size: 1.8rem;
    color: var(--earth-sand);
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 0.9;
    font-style: italic;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(47, 47, 47, 0.7);
    margin-bottom: 40px;
    max-width: 450px;
}

.highlight {
    color: var(--mehari-yellow);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(166, 139, 103, 0.1);
    z-index: -1;
}

/* Tours Grid */
.tours-section {
    background: var(--anthracite);
    color: var(--broken-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-style: italic;
}

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

.tour-card {
    background: var(--broken-white);
    color: var(--anthracite);
    border-radius: 20px 5px 20px 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-15px) rotate(1deg);
}

.tour-image {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-cover: cover;
    transition: transform 0.7s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--mehari-yellow);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tour-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-meta {
    display: flex;
    gap: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--earth-sand);
    margin-bottom: 15px;
}

.tour-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tour-info p {
    font-size: 0.9rem;
    color: rgba(47, 47, 47, 0.6);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Footer */
footer {
    background: var(--anthracite);
    color: var(--broken-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo p {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(250, 249, 246, 0.6);
    margin-top: 20px;
}

.footer-links h4 {
    color: var(--mehari-yellow);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 249, 246, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 249, 246, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 40px;
    }
    .tours-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .tours-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--earth-sand);
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--broken-white);
    border: none;
    outline: none;
    font-family: var(--font-sans);
}

.form-group input:focus {
    box-shadow: 0 0 0 1px var(--mehari-yellow);
}
