:root {
    --ocean-blue: #082032;
    --midnight: #101010;
    --ivory: #FAF7F0;
    --gold: #C9A227;
    --forest: #1B5E45;
    --sky-blue: #A8DADC;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--ivory);
    color: var(--midnight);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--ocean-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    color: var(--forest);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header & Navigation */
header {
    background-color: var(--ocean-blue);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.logo {
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    color: var(--ivory);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--ivory);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--midnight);
    color: var(--ivory);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(8, 32, 50, 0.8), rgba(16, 16, 16, 0.9)), url('images/photo-1503614472-8c93d56e92ce.png') center/cover;
    z-index: 0;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--ivory);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--ivory);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--midnight);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--forest);
    color: var(--forest);
}

.btn-secondary:hover {
    background-color: var(--forest);
    color: var(--ivory);
}

.btn-filter {
    background-color: var(--ivory);
    border: 1px solid var(--sky-blue);
    color: var(--ocean-blue);
    margin: 0.5rem;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-filter.active, .btn-filter:hover {
    background-color: var(--forest);
    color: var(--ivory);
    border-color: var(--forest);
}

/* Sections & Layout */
.section-padding {
    padding: 5rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 1rem auto 0;
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card {
    background-color: #fff;
    border: 1px solid var(--sky-blue);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(8, 32, 50, 0.15);
}

.card-img {
    height: 240px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 1.5rem;
}

.card-tag {
    color: var(--forest);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Filters */
.filters-container {
    text-align: center;
    margin-bottom: 3rem;
}

/* Planning Checklist / Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--sky-blue);
    margin-bottom: 1rem;
    border-radius: 4px;
    background-color: #fff;
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 1.2rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--ocean-blue);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-btn::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
}

.accordion-btn.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.2rem;
}

.accordion-content p {
    padding-bottom: 1.2rem;
}

/* Content Pages (Privacy, Terms, Notes) */
.page-header {
    background-color: var(--ocean-blue);
    color: var(--ivory);
    padding: 4rem 5%;
    text-align: center;
}

.page-header h1 {
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border: 1px solid var(--sky-blue);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.content-wrapper h2 {
    margin-top: 2.5rem;
    border-bottom: 1px solid var(--sky-blue);
    padding-bottom: 0.5rem;
}

.content-wrapper p, .content-wrapper ul {
    margin-bottom: 1.5rem;
}

.content-wrapper ul {
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--ocean-blue);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--sky-blue);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--ivory);
}

.form-control:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 2px rgba(27, 94, 69, 0.2);
}

/* Footer */
footer {
    background-color: var(--midnight);
    color: var(--ivory);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(168, 218, 220, 0.2);
    padding-bottom: 2rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #888;
}

.footer-address {
    font-style: normal;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--ocean-blue);
    color: var(--ivory);
    padding: 1.5rem 5%;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--sky-blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--ocean-blue);
        padding: 2rem;
        text-align: center;
        border-top: 1px solid var(--midnight);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 1.5rem;
    }
}