/* styles.css */

/* Color Palette */
:root {
    --primary-light-blue: #A7D8FF;
    --primary-white: #FFFFFF;
    --secondary-light-blue: #A1C9FF;
    --accent-pale-blue: #C8E4FF;
    --neutral-dark-grey: #4A4A4A;
    --accent-soft-light-blue: #D0E9FF;
    --accent-soft-light-bluea: #73bbfa;
}

/* General Styles */
body {
    font-family: 'Quicksand', sans-serif;
    color: var(--accent-soft-light-bluea);
    margin: 0;
    padding: 0;
    line-height: 1.8;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
    background: linear-gradient(135deg, #83e0fc 0%, #f2c8f9 100%);
    background-size: 400% 400%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Animation for fading in the body */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Hover effect for body */
body:hover {
    background: linear-gradient(135deg, #69c8e5 0%, #f2c8f9 100%);
    transform: scale(1.02);
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Optional subtle pattern effect in the background */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/aztec-pattern.png');
    opacity: 0.1;
    pointer-events: none;
}


/* Typography */
h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: #0b3363;
    text-align: center;
    transition: color 0.3s ease;
}

h1 {
    font-size: 2.6rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-light-blue);
}

h3 {
    font-size: 1.6rem;
    color: var(--accent-pale-blue);
}

p, label, input, select, textarea {
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    color: var(--neutral-dark-grey);
}

/* Layout */
.section {
    padding: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    background-color: var(--primary-white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: var(--neutral-dark-grey);
    transition: box-shadow 0.3s ease;
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

form input, form select, form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.1rem;
    border: 1px solid var(--secondary-light-blue);
    border-radius: 10px;
    font-size: 1rem;
    background-color: var(--primary-white);
    color: var(--neutral-dark-grey);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

form input:focus, form select:focus, form textarea:focus {
    outline: none;
    border-color: var(--primary-light-blue);
    box-shadow: 0 0 5px var(--primary-light-blue);
}

form button {
    background-color: var(--accent-soft-light-blue);
    color: var(--neutral-dark-grey);
    border: none;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 10px;
}

form button:hover {
    background-color: var(--primary-light-blue);
    color: white;
    transform: scale(1.05);
}

/* Itinerary Section */
#itinerary {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    background-color: var(--primary-white);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    color: var(--neutral-dark-grey);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#itinerary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#itinerary h3 {
    margin-bottom: 1.2rem;
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
}

#itinerary ul {
    list-style-type: none;
    padding: 0;
}

#itinerary ul li {
    margin-bottom: 1rem;
    padding: 0.7rem;
    background: var(--accent-pale-blue);
    border-radius: 8px;
    color: var(--primary-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#itinerary ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Map Section */
#map {
    width: 100%;
    margin-top: 2rem;
    border: 3px solid var(--accent-soft-light-blue);
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

#map:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Navbar */
nav {
    background-color: var(--primary-light-blue);
    padding: 1rem;
    transition: background-color 0.3s ease;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.8rem;
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav .logo:hover {
    color: var(--accent-pale-blue);
}

nav .links-container {
    display: flex;
}

nav .links-container a {
    color: var(--primary-white);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav .links-container a:hover {
    color: var(--accent-pale-blue);
}

/* Hero Section */
.hero {
    background: url('https://www.fuaraktuel.com/Uploads/News/0308Y568GEA961WMZA8550952HWEK5.jpg') no-repeat center center/cover;
    color: var(--primary-white);
    text-align: center;
    padding: 6rem 2rem;
    transition: padding 0.3s ease;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.hero h1:hover {
    transform: scale(1.05);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.hero .cta-button {
    background-color: var(--accent-soft-light-blue);
    padding: 1rem 2rem;
    color: var(--neutral-dark-grey);
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero .cta-button:hover {
    background-color: var(--primary-light-blue);
    color: white;
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--primary-light-blue);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--primary-white);
    transition: background-color 0.3s ease;
}

footer:hover {
    background-color: var(--secondary-light-blue);
}

footer a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-pale-blue);
}
