body {
    margin: 0;
    font-family: 'Georgia', serif; /* Serif font for luxury look */
    background-color: #1a1a1a; /* Dark background */
    color: #f0f0f0; /* Light text */
}

/* Header ve Menu */
header {
    background-color: #000; /* Black header */
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #D4AF37; /* Gold border */
}

.logo a {
    color: #D4AF37; /* Gold logo */
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    position: relative;
}

nav a {
    color: #ccc;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

nav a:hover, nav a.active {
    color: #D4AF37; /* Gold hover */
    background-color: transparent; /* Remove background, just change text color */
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #222; /* Dark dropdown */
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    z-index: 1;
    border: 1px solid #333;
}

.dropdown-content li {
    display: block;
}

.dropdown-content a {
    color: #ccc;
    padding: 12px 16px;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #333;
    color: #D4AF37;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Genel Düzen */
.container {
    width: 80%;
    margin: auto;
    background-color: #252525; /* Slightly lighter dark background */
    padding: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

/* Hero Bölümü */
.hero {
    background-color: #000;
    color: #D4AF37;
    padding: 80px 20px;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://picsum.photos/1920/1080?grayscale');
    background-size: cover;
    border-bottom: 1px solid #333;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
    font-family: 'Times New Roman', serif;
}

.hero p {
    color: #fff;
    font-size: 1.2em;
    font-style: italic;
}

/* Resimler ve Kartlar */
.recent-trips {
    overflow: hidden; /* Clearfix yerine */
}

.trip-card {
    float: left;
    width: 30%;
    margin: 1.66%;
    border: 1px solid #333;
    background: #1e1e1e;
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.3s;
}

.trip-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.trip-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(20%);
}

.trip-content {
    padding: 20px;
    text-align: center;
}

.trip-content h3 {
    color: #D4AF37;
    margin-top: 0;
}

.trip-content p {
    color: #aaa;
    font-size: 0.9em;
}

.btn {
    display: inline-block;
    background-color: transparent;
    color: #D4AF37;
    padding: 8px 20px;
    text-decoration: none;
    border: 1px solid #D4AF37;
    border-radius: 0;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 0.8em;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #D4AF37;
    color: #000;
}

/* Galeri */
.gallery-grid {
    overflow: hidden;
}

.gallery-item {
    float: left;
    width: 30%;
    margin: 1.5%;
    position: relative;
    border: 1px solid #333;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    text-align: center;
    background-color: rgba(0,0,0,0.8);
    color: #D4AF37;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: none;
    box-sizing: border-box;
    border-top: 1px solid #D4AF37;
}

.gallery-item:hover .gallery-caption {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #D4AF37;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    background-color: #333;
    border: 1px solid #444;
    color: #fff;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #D4AF37;
    outline: none;
}

/* Footer */
footer {
    background-color: #000;
    color: #888;
    text-align: center;
    padding: 40px 20px;
    clear: both;
    border-top: 1px solid #333;
}

.footer-section {
    display: inline-block;
    margin: 0 30px;
    vertical-align: top;
    text-align: left;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1em;
    border-bottom: 1px solid #D4AF37;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #D4AF37;
    text-decoration: none;
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
    .trip-card, .gallery-item {
        width: 100%;
        margin: 20px 0;
        float: none;
    }
    
    .container {
        width: 90%;
        padding: 20px;
    }
    
    nav ul li {
        display: block;
        text-align: center;
        margin-bottom: 10px;
        border-bottom: 1px solid #333;
    }
    
    nav a {
        padding: 15px;
    }

    .footer-section {
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }
}
