/* FILENAME: style.css
   AUTHOR: James Kelly (Optimized for Mobile)
*/

:root {
    --primary-blue: #003366;
    --transparent-blue: rgba(0, 51, 102, 0.95); 
    --text-dark: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --accent-gold: #d4af37;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, sans-serif; }

body, html { 
    width: 100%; 
    overflow-x: hidden; 
    background-color: var(--light-bg); 
    color: var(--text-dark); 
    -webkit-font-smoothing: antialiased; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    background: var(--transparent-blue); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: calc(10px + env(safe-area-inset-top)) 5% 10px; 
    z-index: 2000; 
    backdrop-filter: blur(15px); 
    min-height: 90px; 
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo { display: flex; align-items: center; gap: 15px; color: var(--white); font-size: 1.2rem; font-weight: bold; text-decoration: none; }
.logo img { height: 60px; width: 60px; border-radius: 50%; background: white; padding: 2px; }

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; padding: 10px; display: block; }
.nav-links a:hover { color: var(--accent-gold); }
.menu-btn { display: none; color: var(--white); font-size: 2rem; cursor: pointer; padding: 10px; }

/* --- THE FIX: MOBILE OPTIMIZED CONTACT INFO --- */
.info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; min-width: 0; }
.info-item i { color: var(--accent-gold); font-size: 1.3rem; width: 25px; flex-shrink: 0; } /* Icon never squishes */
.info-item p, .info-item a { 
    font-size: 1.1rem; 
    color: #fff; 
    margin: 0; 
    word-break: break-all; /* Email wraps correctly */
    overflow-wrap: break-word;
    text-decoration: none;
}

/* --- ADDED: STRIPE BUY BUTTON STYLES --- */
.buy-btn { 
    background: var(--accent-gold); 
    color: var(--primary-blue); 
    padding: 8px 15px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
    font-size: 0.9rem; 
    white-space: nowrap;
    display: inline-block;
    transition: transform 0.2s;
}
.buy-btn:active { transform: scale(0.95); }
.action-col { text-align: right; width: 120px; }

footer { 
    background: var(--primary-blue); 
    color: var(--white); 
    text-align: center; 
    padding: 40px 20px calc(40px + env(safe-area-inset-bottom)); 
    border-top: 3px solid var(--accent-gold); 
}
footer p { word-break: break-word; }

@media (max-width: 900px) {
    .menu-btn { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--primary-blue); padding: 10px 0 30px; }
    .nav-links.active { display: flex; }
    .logo span { display: none; } 
    .contact-container { flex-direction: column; max-width: 95%; margin: 20px auto; }
    .contact-info { padding: 30px 15px; border-right: none; }
    .info-item p, .info-item a { font-size: 1rem; }
    .action-col { width: 80px; } /* Keeps the button tight on mobile */
}