:root {
    --navy: #002B5B;
    --copper: #C19A6B;
    --white: #ffffff;
    --light-grey: #f5f5f5;
    --text-dark: #333333;
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--light-grey);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
    justify-content: center;
}

/* Page Frame Layout */
.page-frame {
    background-color: var(--white);
    max-width: 1400px;
    width: 100%;
    margin: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.bosphorus-header { padding: 30px 50px; border-bottom: 1px solid #eee; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }

.brand a { font-family: var(--font-head); font-size: 1.5rem; line-height: 1; color: var(--navy); display: block; letter-spacing: 1px; }
.copper { color: var(--copper); }

.desktop-nav { display: flex; gap: 30px; align-items: center; }
.desktop-nav a { font-size: 0.9rem; text-transform: uppercase; color: #666; letter-spacing: 1px; font-weight: 600; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--navy); }

.btn-copper { border: 1px solid var(--copper); color: var(--copper) !important; padding: 8px 20px; border-radius: 2px; }
.btn-copper:hover { background: var(--copper); color: var(--white) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--navy); }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--navy); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.5s; }
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; font-size: 2rem; color: var(--copper); cursor: pointer; }
.mobile-overlay a { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin: 15px 0; }

/* Hero */
.hero-view { height: 70vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-view::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 43, 91, 0.3); }
.hero-content { position: relative; z-index: 10; text-align: center; color: var(--white); }
.subtitle { font-size: 0.9rem; letter-spacing: 4px; color: var(--copper); display: block; margin-bottom: 20px; font-weight: 600; }
.hero-content h1 { font-family: var(--font-head); font-size: 4.5rem; line-height: 1.1; margin-bottom: 40px; }
.hero-content p { font-size: 1.2rem; font-weight: 300; margin-bottom: 40px; }

.booking-inline form { display: inline-flex; background: var(--white); padding: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.booking-inline input { padding: 10px; border: 1px solid #eee; margin-right: 10px; font-family: var(--font-body); color: var(--text-dark); }
.booking-inline button { background: var(--navy); color: var(--white); border: none; padding: 10px 25px; font-family: var(--font-head); cursor: pointer; letter-spacing: 1px; transition: 0.3s; }
.booking-inline button:hover { background: var(--copper); }

/* Content */
.content-wrapper { padding: 80px 50px; flex-grow: 1; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--navy); }
.copper-divider { color: var(--copper); font-size: 1.5rem; margin-top: 10px; }

.room-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.room-card { text-align: center; }
.img-frame { border: 1px solid var(--copper); padding: 5px; margin-bottom: 20px; transition: 0.3s; }
.img-frame:hover { transform: translateY(-5px); }
.img-frame img { width: 100%; height: 250px; object-fit: cover; display: block; }
.room-card h3 { font-family: var(--font-head); color: var(--navy); margin-bottom: 10px; }
.link-text { color: var(--copper); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; border-bottom: 1px solid var(--copper); padding-bottom: 2px; }

/* About & Contact */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-col h1 { font-family: var(--font-head); font-size: 3rem; color: var(--navy); line-height: 1.2; }
.line-left { width: 50px; height: 3px; background: var(--copper); margin: 20px 0 30px; }
.highlight-box { border-left: 3px solid var(--copper); padding-left: 20px; margin-top: 30px; font-style: italic; color: #666; font-family: var(--font-head); }
.img-col img { width: 100%; box-shadow: 20px 20px 0 var(--navy); }

.contact-card { max-width: 600px; margin: 0 auto; background: #fff; box-shadow: 0 0 20px rgba(0,0,0,0.05); }
.info-part { background: var(--navy); color: var(--white); padding: 40px; text-align: center; }
.info-part h2 { font-family: var(--font-head); margin-bottom: 20px; color: var(--copper); }
.details-list { list-style: none; margin-top: 20px; font-size: 0.95rem; }
.details-list li { margin-bottom: 10px; }

.elegant-form { padding: 40px; }
.input-grp { margin-bottom: 20px; }
.input-grp label { display: block; font-size: 0.75rem; font-weight: bold; color: var(--navy); margin-bottom: 5px; letter-spacing: 1px; }
.input-grp input, .input-grp select, .input-grp textarea { width: 100%; border: none; border-bottom: 1px solid #ddd; padding: 10px 0; font-family: var(--font-body); background: transparent; }
.input-grp input:focus { border-bottom-color: var(--copper); outline: none; }
.btn-full { width: 100%; background: var(--copper); color: var(--white); border: none; padding: 15px; font-family: var(--font-head); cursor: pointer; letter-spacing: 1px; }
.btn-full:hover { background: var(--navy); }

/* Reviews & Legal */
.reviews-classic { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.review-item { text-align: center; padding: 30px; border: 1px solid #eee; position: relative; }
.review-item.highlight { background: #fafafa; border-color: var(--copper); }
.quote-mark { font-size: 3rem; color: var(--copper); line-height: 1; font-family: serif; }
.guest-info strong { display: block; color: var(--navy); font-family: var(--font-head); margin-top: 15px; }
.guest-info span { font-size: 0.8rem; color: #999; }

.legal-box { max-width: 700px; margin: 0 auto; padding: 40px; background: #fafafa; }
.legal-box h1 { font-family: var(--font-head); color: var(--navy); text-align: center; }
.line-center { width: 50px; height: 2px; background: var(--copper); margin: 20px auto 40px; }
.legal-box h3 { color: var(--navy); margin-top: 30px; font-size: 1.2rem; }

/* Footer */
.bosphorus-footer { border-top: 1px solid #eee; padding: 40px 50px; text-align: center; margin-top: auto; }
.f-logo { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); margin-bottom: 20px; }
.f-links a { color: #666; margin: 0 15px; font-size: 0.9rem; }
.f-links a:hover { color: var(--copper); }
.copyright { margin-top: 20px; font-size: 0.8rem; color: #aaa; }

/* Cookie Bar */
.cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--navy); color: var(--white); padding: 15px; text-align: center; z-index: 9999; display: none; }
.cookie-bar.active { display: flex; justify-content: center; gap: 20px; align-items: center; animation: slideUp 0.5s; }
.cookie-bar button { background: var(--copper); color: var(--white); border: none; padding: 5px 20px; cursor: pointer; font-family: var(--font-head); }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (max-width: 900px) {
    .page-frame { margin: 0; border: none; min-height: 100vh; }
    .desktop-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .room-showcase, .about-layout { grid-template-columns: 1fr; }
    .header-inner { padding: 0 20px; }
    .content-wrapper { padding: 40px 20px; }
}