/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: #F9F6F1;
}

/* Global Navigation Styles */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #EADDCA;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 200px;
    height: auto;
    margin-right: 1px;
}

nav .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

nav .logo:hover {
    transform: scale(1.1);
}

nav .links-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav .links-container a {
    color: #333;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease-in-out;
}

nav .links-container a:hover {
    color: #808000;
}

nav .links-container a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #4A0404;
    transition: width 0.3s ease-in-out;
}

nav .links-container a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
nav .dropdown {
    position: relative;
}

nav .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 150px;
    z-index: 999;
}

nav .dropdown-content a {
    padding: 10px 15px;
    color: #333;
    font-size: 1rem;
    text-decoration: none;
    text-align: left;
    transition: background 0.3s ease-in-out;
}

nav .dropdown-content a:hover {
    background: #F0F0F0;
}

nav .dropdown:hover .dropdown-content {
    display: flex;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav .links-container {
        display: none;
    }

    nav .hamburger-menu {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: #333;
    }

    nav.open .links-container {
        display: flex;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/The_Cats_of_Istanbul_-_6614719993.jpg/800px-The_Cats_of_Istanbul_-_6614719993.jpg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero .cta-button {
    background: #808000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s;
}

.hero .cta-button:hover {
    background: #C2B280;
}

/* Destination Cards */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px;
    background: #fff;
}

.card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.card .btn {
    background: #7393B3;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.card .btn:hover {
    background: #4682B4;
}

/* Footer */
footer {
    text-align: center;
    background: #967969;
    color: #fff;
    padding: 20px;
    margin-top: 20px;
}

footer a {
    color: #C2B280;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #fff;
}
