/* --- General Styling --- */
:root {
    --primary-color: #333;
    --secondary-color: #f4f4f4;
    --accent-color: #bfa888; /* A sophisticated gold/tan accent */
    --text-color: #555;
}

body {
    font-family: 'Garamond', 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

h1, h2, h3 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    color: var(--primary-color);
    font-weight: 300;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 1rem; }
p { margin-bottom: 1rem; }

/* --- Header & Navigation --- */
.main-header {
    background: #fff;
    padding: 1.5rem 0; /* CHANGED - Increased vertical padding for more space */
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px; /* CHANGED - Significantly increased logo height */
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 1.1rem; /* CHANGED - Increased font size for navigation links */
    font-weight: bold; /* CHANGED - Made navigation links bolder for readability */
}

.main-nav a:hover, .main-nav a.current {
    color: var(--accent-color);
}

/* --- Hero Section (Homepage) --- */
.hero {
    min-height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/escape-for-two.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 3rem 1rem;
}

.hero h1 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 4rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.8rem 1.8rem;
    margin-top: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #7b6548;
}

/* --- Sections --- */
.page-header {
    height: 30vh;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.page-header h1 { color: #fff; }

.content-section {
    padding: 4rem 0;
}

/* --- Featured Experiences (Homepage) --- */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.featured-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.featured-item h3 {
    margin: 1rem 0 0.5rem;
}

/* --- Process Section --- */
.process-steps {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.process-steps li {
    background: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-left: 5px solid var(--accent-color);
    border-radius: 5px;
}

.process-steps h3 {
    margin-top: 0;
}

/* --- About Us Icon List (NEW for your about page issue) --- */
.icon-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.icon-item {
    text-align: center;
    margin: 1rem 2rem;
    flex-basis: 150px; /* Gives items a base width */
}

.icon-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon-item p {
    font-weight: bold;
    color: var(--primary-color);
}


/* --- Registration Form --- */
.form-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 5px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* --- Footer --- */
.main-footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    display: flex; /* CHANGED - To center footer content */
    flex-direction: column; /* CHANGED */
    align-items: center; /* CHANGED */
}

.main-footer .footer-logo img { /* NEW - Style for footer logo */
    height: 80px; /* Adjust size for footer */
    margin-bottom: 1rem;
}
.main-footer p {
    margin: 0;
    font-size: 0.9rem;
}


/* --- Responsive --- */
@media(max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .main-header .container {
        flex-direction: column;
    }

    .main-nav ul {
        margin-top: 1rem;
    }
    
    .main-nav a { /* CHANGED - Adjust navigation font size for mobile */
        font-size: 1rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .logo img { height: 75px; } /* CHANGED - Adjust header logo size for mobile */

    .icon-item {
        flex-basis: 45%; /* Allow two items per row on small screens */
        margin: 1rem 0.5rem;
    }
}
/* Utilities */
img { height: auto; }

@media (max-width: 768px) {
  .hero { background-attachment: scroll; }
  .main-header { padding: .75rem 0; }
  .logo img { height: 65px; }
}

.skip-link {
  position: absolute; left: -999px; top: 0;
}
.skip-link:focus {
  left: 1rem; top: 1rem; background: #000; color: #fff; padding: .5rem 1rem; z-index: 1001;
}
