@font-face {
    font-family: 'Adelia';
    src: url('font/adelia.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #121212;
    --surface-color: #1e1e1e;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --accent-color: #c59b6d;
    --accent-hover: #a67c52;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

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

.section {
    padding: 100px 0;
}

.dark-bg {
    background-color: #0a0a0a;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 155, 109, 0.1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo.signature {
    font-family: 'Adelia', cursive;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    line-height: 1;
}

.logo-handle {
    font-size: 11px;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    margin-top: 2px;
    margin-left: 115px; /* Shifted even further right to align under 'u' */
    font-weight: 300;
    font-family: var(--font-body);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-socials {
    display: flex;
    gap: 15px;
}

.nav-socials a {
    color: var(--text-color);
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-socials a.instagram:hover { color: #E1306C; }
.nav-socials a.tiktok:hover { color: #ff0050; }
.nav-socials a.youtube:hover { color: #FF0000; }


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(18, 18, 18, 0.4), rgba(18, 18, 18, 0.6)), url('ich.jpeg') center 43% / cover no-repeat;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(197, 155, 109, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 2.5s ease;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(197, 155, 109, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: #fff;
    color: #fff;
}

.hero .title {
    font-size: 5rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Grid Layouts */
.projects-grid, .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2, .project-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.about-text p, .project-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* Image Masks */
.mask-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 5px;
    filter: grayscale(30%) contrast(1.15);
    transition: filter 0.5s ease, transform 0.5s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-image img {
    aspect-ratio: auto;
    max-height: 700px;
    object-position: center top;
}

.mask-image img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Socials */
.social-subtitle {
    margin-bottom: 50px;
    color: #b0b0b0;
}

.social section h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-card {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 10px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(197, 155, 109, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-card i {
    font-size: 3rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.social-card span {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(197, 155, 109, 0.1);
    border-color: var(--accent-color);
}

.social-card.instagram:hover i { color: #E1306C; }
.social-card.tiktok:hover i { color: #ff0050; }
.social-card.youtube:hover i { color: #FF0000; }
.social-card.facebook:hover i { color: #1877F2; }

/* Footer */
footer {
    background: #050505;
    padding: 40px 0;
    border-top: 1px solid rgba(197, 155, 109, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    margin-left: 20px;
    font-size: 14px;
}

/* Vehicle List */
.vehicle-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 2px solid var(--accent-color);
}

.vehicle-list li {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.vehicle-specs {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-top: 2px;
    font-family: var(--font-body);
    font-weight: 300;
}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--bg-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top:hover {
    opacity: 1;
    transform: translateY(-5px);
    color: var(--bg-color);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--surface-color);
    padding: 40px;
    border: 1px solid var(--accent-color);
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.modal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.modal-content h4 {
    margin-top: 20px;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.modal-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.close-btn {
    color: var(--text-color);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Fade In / Intersection Observer */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optimized Tour & Horizontal Roadmap */
.tour-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.tour-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.tour-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.tour-country-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.itinerary-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

.itinerary-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stop-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stop-item {
    display: grid;
    grid-template-columns: 50px 140px 180px 1fr 220px;
    align-items: center;
    gap: 20px;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.stop-item:last-child {
    border-bottom: none;
}

.stop-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.stop-flag {
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
}

.stop-date {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
}

.stop-nights {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    text-transform: none;
    font-size: 0.75rem;
    margin-top: 2px;
}

.stop-location {
    font-size: 1rem;
    color: var(--heading-color);
    font-weight: 600;
}

.stop-route {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.stop-details {
    font-size: 0.85rem;
    color: var(--accent-color);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    opacity: 0.9;
}

.stop-details i {
    font-size: 0.8rem;
    margin-right: 5px;
}

/* Responsive Tour */
@media (max-width: 992px) {
    .stop-item {
        grid-template-columns: 50px 130px 150px 1fr;
        gap: 15px;
    }
    .stop-details {
        grid-column: 1 / -1;
        justify-content: flex-start;
        border-top: 1px solid rgba(255, 255, 255, 0.03);
        padding-top: 10px;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .stop-item {
        position: relative;
        padding: 15px 15px 15px 60px;
        display: block;
    }
    .stop-flag {
        position: absolute;
        left: 15px;
        top: 20px;
    }
    .stop-date {
        margin-bottom: 5px;
    }
    .stop-location {
        display: block;
        margin-bottom: 5px;
    }
    .stop-route {
        display: block;
        margin-bottom: 10px;
    }
    .stop-details {
        border-top: none;
        padding-top: 0;
    }
}

/* Responsive Tour Header */
@media (max-width: 992px) {
    .tour-header, .about-grid, .projects-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .tour-text h2 {
        font-size: 2.2rem;
    }
}

/* Responsive */
@media (max-width: 992px) {

    .hero .title {
        font-size: 3rem;
    }

    .navbar {
        padding: 20px;
    }
    
    .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

