/* --- Variables --- */
:root {
    --color-navy: #002147;      /* Deep Navy Blue */
    --color-teal: #00a8cc;      /* Bosphorus Turquoise */
    --color-white: #ffffff;
    --color-foam: #f0f8ff;      /* Alice Blue / Foam */
    --color-text: #333333;
    
    --font-head: 'Playfair Display', serif;
    --font-body: 'Barlow', sans-serif;
    
    --radius: 0px;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-foam);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- Marine Bar --- */
.marine-bar { background-color: var(--color-navy); color: var(--color-white); font-size: 0.85rem; padding: 8px 0; border-bottom: 2px solid var(--color-teal); }
.marine-flex { display: flex; justify-content: space-between; align-items: center; }
.weather-info span { margin-right: 15px; }

/* --- Header --- */
.hub-header { background-color: var(--color-white); padding: 20px 0; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--color-navy); letter-spacing: 1px; }
.teal-text { color: var(--color-teal); font-style: italic; }
.anchor-icon { font-size: 1.5rem; margin-left: 5px; color: var(--color-navy); }

.portal-nav ul { display: flex; gap: 25px; align-items: center; }
.portal-nav a { font-weight: 600; color: var(--color-navy); font-size: 1rem; text-transform: uppercase; }
.portal-nav a:hover, .portal-nav a.active { color: var(--color-teal); }

.btn-outline { border: 2px solid var(--color-teal); color: var(--color-teal) !important; padding: 8px 20px; font-weight: bold; transition: 0.3s; }
.btn-outline:hover { background-color: var(--color-teal); color: var(--color-white) !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 30px; height: 3px; background-color: var(--color-navy); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.3s ease; border-left: 5px solid var(--color-teal);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; }
.mobile-menu a { font-size: 1.1rem; font-weight: 600; color: var(--color-navy); border-bottom: 1px solid #eee; padding-bottom: 10px; }

/* --- Hero --- */
.hero-magazine {
    position: relative; height: 500px;
    background-size: cover; background-position: center;
    display: flex; align-items: flex-end;
}
.hero-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,33,71,0.9), transparent); z-index: 1; }

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 40px 20px; color: var(--color-white); }
.category-tag { background-color: var(--color-teal); color: var(--color-white); padding: 5px 10px; font-size: 0.8rem; font-weight: bold; letter-spacing: 1px; display: inline-block; margin-bottom: 15px; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 15px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 25px; max-width: 600px; opacity: 0.9; }
.read-more { font-weight: bold; border-bottom: 2px solid var(--color-teal); padding-bottom: 3px; }

/* --- Layout Grid --- */
.section-padding { padding: 60px 0; }
.layout-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }

.section-head { margin-bottom: 30px; }
.section-head h2 { font-family: var(--font-head); font-size: 2rem; color: var(--color-navy); }
.line-teal { width: 60px; height: 4px; background-color: var(--color-teal); margin-top: 10px; }

/* Cards */
.news-card { background-color: var(--color-white); display: flex; margin-bottom: 30px; box-shadow: var(--shadow); transition: 0.3s; }
.news-card:hover { transform: translateY(-5px); }
.news-card img { width: 40%; object-fit: cover; }
.card-text { padding: 25px; width: 60%; display: flex; flex-direction: column; justify-content: center; }
.cat { color: var(--color-teal); font-weight: bold; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 10px; }
.card-text h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; color: var(--color-navy); }
.card-text p { color: #666; font-size: 0.95rem; }

/* Sidebar Widgets */
.widget { background-color: var(--color-white); padding: 25px; margin-bottom: 30px; box-shadow: var(--shadow); border-top: 4px solid var(--color-navy); }
.widget h3 { font-family: var(--font-head); margin-bottom: 20px; color: var(--color-navy); }
.event-list li { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.event-list .date { background-color: var(--color-foam); color: var(--color-navy); padding: 3px 8px; font-size: 0.8rem; font-weight: bold; margin-right: 10px; }
.event-list strong { display: block; margin-top: 5px; }
.event-list small { color: #888; }

.ad-space { text-align: center; background-color: var(--color-navy); color: var(--color-white); border: none; }
.ad-space h4 { color: var(--color-teal); font-size: 1.5rem; margin-bottom: 10px; }
.btn-sm { display: inline-block; background-color: var(--color-teal); color: var(--color-white); padding: 8px 15px; margin-top: 15px; font-weight: bold; font-size: 0.9rem; }

/* --- About (Culture) --- */
.page-header { text-align: center; margin-bottom: 50px; }
.page-header h1 { font-family: var(--font-head); font-size: 3rem; color: var(--color-navy); }

.culture-grid { display: flex; flex-direction: column; gap: 50px; }
.culture-item { display: flex; gap: 40px; align-items: center; background: var(--color-white); padding: 30px; box-shadow: var(--shadow); }
.culture-item.reverse { flex-direction: row-reverse; }
.culture-item img { width: 50%; height: 300px; object-fit: cover; }
.c-content { width: 50%; }
.c-content h3 { font-family: var(--font-head); font-size: 2rem; color: var(--color-teal); margin-bottom: 15px; }

/* --- Reviews (Grid) --- */
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.venue-card { background: var(--color-white); padding: 30px; box-shadow: var(--shadow); text-align: center; }
.rating { background: var(--color-teal); color: white; display: inline-block; padding: 5px 10px; font-weight: bold; margin-bottom: 15px; }
.venue-card h3 { font-family: var(--font-head); margin-bottom: 5px; color: var(--color-navy); }
.location { color: #888; font-size: 0.9rem; display: block; margin-bottom: 15px; }
.review { font-style: italic; color: #555; margin-bottom: 15px; }
.reviewer { font-weight: bold; color: var(--color-navy); font-size: 0.9rem; }

/* --- Contact & Legal --- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-text h2 { font-family: var(--font-head); color: var(--color-navy); font-size: 2.5rem; }
.contact-details { margin-top: 30px; font-size: 1.1rem; }

.marine-form .form-group { margin-bottom: 20px; }
.marine-form label { display: block; font-weight: 500; margin-bottom: 5px; }
.marine-form input, .marine-form select, .marine-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; font-family: var(--font-body); background: #fdfdfd; }
.btn-submit { width: 100%; background-color: var(--color-navy); color: var(--color-white); padding: 15px; border: none; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background-color: var(--color-teal); }

.info-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; box-shadow: var(--shadow); }
.info-doc h1 { font-family: var(--font-head); color: var(--color-navy); }
.info-doc h3 { color: var(--color-teal); margin-top: 30px; margin-bottom: 10px; }

/* --- Footer --- */
.hub-footer { background-color: var(--color-navy); color: var(--color-white); padding: 50px 0; margin-top: auto; text-align: center; }
.f-brand { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 20px; }
.f-brand p { font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0; opacity: 0.7; }
.f-social a { color: var(--color-teal); margin: 0 10px; font-weight: bold; }
.copyright { margin-top: 30px; font-size: 0.8rem; opacity: 0.5; }

@media (max-width: 992px) {
    .portal-nav { display: none; }
    .mobile-toggle { display: flex; }
    .layout-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .news-card { flex-direction: column; }
    .news-card img, .card-text { width: 100%; }
    .culture-item, .culture-item.reverse { flex-direction: column; }
    .culture-item img, .c-content { width: 100%; }
    .venue-grid, .contact-wrapper { grid-template-columns: 1fr; }
}