/* ==========================================
   USER CONTROLS: Change these numbers to 
   adjust the size of your images.
   ========================================== */
:root {
    /* Logo Controls */
    --logo-width-mobile: 150px;  /* Shrink or grow mobile logo */
    --logo-width-desktop: 300px; /* Shrink or grow desktop logo */
    
    /* Hero Section Controls */
    --hero-height-mobile: 350px; /* Adjust height for phones */
    --hero-height-desktop: 500px;/* Adjust height for computers */

    /* Brand Colors */
    --navy: #001e3d;
    --orange: #f05a28;
    --white: #ffffff;
    --primary-blue: #001e3d;
    --accent-orange: #f05a28;
}

/* ==========================================
   CORE SITE STYLES
   ========================================== */
body { margin: 0; font-family: 'Arial', sans-serif; background: #f4f7f9; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* TOP ANNOUNCEMENT BAR */
.top-announcement {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size: 0.9rem;
}
.orange-text { color: var(--orange); }

/* NAVIGATION & LOGO BOX */
.main-nav { 
    background: var(--white); 
    padding: 20px 0; 
    border-bottom: 1px solid #ddd; 
}

.nav-flex { 
    display: flex; 
    justify-content: flex-end; /* RESTORED TO RIGHT FOR DESKTOP */
    align-items: center; 
}

/* Target your 'logo' class from the HTML */
.logo {
    width: var(--logo-width-desktop); /* RESTORED TO DESKTOP SIZE */
    margin-right: auto; /* KEEPS LOGO LEFT WHILE PUSHING NAV RIGHT */
}
.logo img {
    display: block;
    width: 100%;
    height: auto;
}

/* NAVIGATION LINKS: Bold, Large, and Spaced */
.nav-flex nav {
    display: flex; /* FORCED VISIBLE FOR LAPTOP USE */
    gap: 50px; /* Increased space between links */
    align-items: center;
}

.nav-flex nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 900;    /* Extra Bold */
    font-size: 1.2rem;   /* Larger Text */
    transition: color 0.3s ease; 
    text-transform: uppercase;
}

/* ORANGE HOVER EFFECT */
.nav-flex nav a:hover {
    color: var(--orange);
}

/* Ensure the orange button still looks distinct */
.btn-orange { 
    background: var(--orange); 
    color: white !important; 
    padding: 12px 25px; 
    border-radius: 5px; 
    text-decoration: none;
    font-weight: 900;
}

.btn-orange:hover {
    background: var(--navy) !important; 
}

/* HERO IMAGE SECTION */
.hero-perspective {
    height: var(--hero-height-mobile);
    background-size: cover;
    background-position: center;
    background-image: url('../images/hero-mobile.png'); 
}
.hero-overlay {
    background: rgba(0, 30, 61, 0.4);
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-overlay h1 {
    color: white;
    font-size: 2.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

/* INFO GRID & SILENT SALESMAN */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 20px;
}

/* DESKTOP OVERRIDE: This stops the stacking on computers */
@media screen and (min-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr 1fr; /* Forces two columns side-by-side */
        align-items: start;
    }
    
    .container {
        padding: 0 40px; /* Gives more breathing room on wide screens */
    }
}

.map-box, .benefits-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefits-box h3 { color: var(--navy); border-bottom: 2px solid var(--orange); padding-bottom: 10px; }
.benefits-box ul { list-style: none; padding: 0; }
.benefits-box li { margin: 15px 0; color: #444; display: flex; align-items: center; }

/* ORANGE CHECKBOXES */
.benefits-box li::before {
    content: "\f14a"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--orange);
    margin-right: 12px;
    font-size: 1.2rem;
}

.contact-cta {
    background: var(--navy);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin-top: 20px;
}
.phone-link { font-size: 2rem; color: white; text-decoration: none; display: block; font-weight: bold; }

/* POLICY PAGES */
.policy-page { padding: 2rem 1rem; max-width: 800px; margin: 0 auto; background: #fff; }
.policy-page h1 { color: var(--primary-blue); border-bottom: 3px solid var(--accent-orange); display: inline-block; }
.policy-page section { margin-bottom: 2rem; }
.policy-page h2 { font-size: 1.4rem; color: var(--primary-blue); margin-bottom: 0.5rem; }
.policy-page p { font-size: 1rem; color: #444; }

/* FORM STYLING */
input:focus, textarea:focus {
    outline: none;
    border-color: var(--orange) !important;
    box-shadow: 0 0 5px rgba(240, 90, 40, 0.2);
}

form .btn-orange:hover {
    background: var(--navy);
    transition: 0.3s ease;
}

/* TWO-COLUMN CITY LIST */
.silent-salesman-text ul {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates two equal columns */
    gap: 10px 20px;                 /* Adds spacing between rows and columns */
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

/* Ensure the checkmarks still align correctly in the grid */
.silent-salesman-text li {
    margin: 0 !important; /* Overrides the default margin for better grid alignment */
    display: flex;
    align-items: center;
}

/* PUBLIC TRIPS GALLERY */
.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.trip-card {
    background: var(--white);
    border-bottom: 4px solid var(--orange);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-5px);
}

.trip-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.trip-info {
    padding: 20px;
}

.trip-info h3 {
    color: var(--navy);
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

/* BLOG EDITOR CLEAN LAYOUT */
.blog-manager-container {
    background: #ffffff;
    padding: 20px;
}

.blog-group {
    margin-bottom: 20px;
}

.blog-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #001e3d; /* Navy */
}

.blog-group input, 
.blog-group textarea {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box; /* Crucial for stacking */
}

.blog-group textarea {
    height: 200px;
}

.post-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
}

