/* Christina Rose Travels - Main Stylesheet */

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

:root {
    --primary-rose: #C9A5A0;
    --light-cream: #F5F1ED;
    --dark-text: #4A4A4A;
    --gold-accent: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F9F7F5;
}

body {
    font-family: 'Georgia', serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #E8DDD9;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-rose);
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-rose);
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--primary-rose);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 20px;
    color: var(--dark-text);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-image {
    max-width: 300px;
    margin: 30px 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 80px 20px;
}

.section h2 {
    font-size: 36px;
    color: var(--primary-rose);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
}

.section-intro {
    font-size: 16px;
    color: var(--dark-text);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.card {
    background-color: var(--white);
    border: 1px solid #E8DDD9;
    padding: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-rose);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.card h3 {
    color: var(--primary-rose);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 400;
}

.card p {
    color: var(--dark-text);
    font-size: 14px;
    line-height: 1.8;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border: 1px solid #E8DDD9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(201, 165, 160, 0.9);
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Forms */
form {
    max-width: 600px;
    margin: 50px auto;
    background-color: var(--light-gray);
    padding: 40px;
    border: 1px solid #E8DDD9;
}

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

label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.required {
    color: var(--primary-rose);
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #D8CCC7;
    background-color: var(--white);
    color: var(--dark-text);
    font-family: 'Georgia', serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-rose);
    box-shadow: 0 0 5px rgba(201, 165, 160, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    background-color: var(--primary-rose);
    color: white;
    padding: 12px 40px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    width: 100%;
}

button:hover {
    background-color: #B8958A;
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 50px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-rose);
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.8;
    color: #D8D8D8;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-rose);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-rose);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--gold-accent);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-rose);
    color: white;
    padding: 12px 35px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #B8958A;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section h2 {
        font-size: 28px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero {
        padding: 50px 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    form {
        padding: 20px;
    }
}
