
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --orange: #E8621A;
    --orange-dark: #C4510F;
    --orange-light: #F5A623;
    --dark: #1A1A1A;
    --darker: #121212;
    --warm-white: #FFF8F0;
    --warm-grey: #2F2F2F;
    --text-light: #F0E6D8;
    --text-dark: #333333;
    --text-muted: #999;
}

/* RESET & BASE */
* { font-family: 'Cabin', sans-serif; margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; background-color: var(--warm-white); color: var(--text-dark); scroll-behavior: smooth; }
a { text-decoration: none; }

.scroll-to-top-link {
    position: fixed; width: 50px; right: 5%; bottom: 5%; cursor: pointer;
    display: none; z-index: 1000; opacity: 0.8;
    background: var(--orange); border-radius: 50%; padding: 10px;
    filter: brightness(1.1);
}

/* BUTTONS */
.btn_primary {
    display: inline-block; background: var(--orange); color: #fff; padding: 14px 32px;
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px;
    border-radius: 8px; text-transform: uppercase; letter-spacing: 1.5px;
    transition: all 0.3s ease; border: 2px solid var(--orange);
}
.btn_primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,98,26,0.35); color: #fff; }
.btn_outline {
    display: inline-block; background: transparent; color: #fff; padding: 14px 32px;
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px;
    border-radius: 8px; text-transform: uppercase; letter-spacing: 1.5px;
    transition: all 0.3s ease; border: 2px solid rgba(255,255,255,0.6);
}
.btn_outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-2px); }

/* NAVIGATION */
.nav { z-index: 99999; background: var(--dark); position: sticky; top: 0; }
.nav .container_ .normal_nav, .nav .container_ .responsive_nav {
    width: 92%; margin: 0 auto; display: flex; align-items: center;
}
.responsive_nav { display: none !important; }
.nav_ { display: none; }
.nav_ ul { display: block !important; }
.nav_ li { float: none; }
.nav .logo { padding: 12px 0; width: 100px; }
.nav .logo img { width: 100%; }
.nav ul { list-style: none; margin: 0 auto; padding: 0 0 0 35px; overflow: hidden; display: flex; width: calc(100% - 70px); }
.nav li a {
    display: block; color: var(--text-light); text-align: center; padding: 20px 25px;
    font-size: 14px; transition: all 0.3s ease; text-transform: uppercase;
    font-family: 'Outfit', sans-serif; font-weight: 600; letter-spacing: 1px;
}
.nav li a:hover:not(.active) { color: var(--orange); }
.nav .active { color: var(--orange); border-bottom: 2px solid var(--orange); }
.nav_ { background: var(--dark); }
.nav_ li a { color: var(--text-light) !important; text-align: left; padding: 14px 25px; font-family: 'Outfit', sans-serif; font-weight: 500; }
.nav_ li a:hover { background: rgba(232,98,26,0.1); color: var(--orange) !important; }

/* HERO */
#hero {
    position: relative; min-height: 100vh; display: flex; flex-direction: column;
    background-image: url("../img/backgrounds/header.png");
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero_overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.756) 0%, rgba(26, 26, 26, 0.694) 50%, rgba(232,98,26,0.15) 100%);
    z-index: 1;
}
#hero .nav { position: relative; z-index: 10; background: rgba(26,26,26,0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero_content {
    position: relative; z-index: 5; flex: 1; display: flex; flex-direction: column;
    justify-content: center; padding: 0 8%;
}
.hero_badge {
    display: inline-block; background: rgba(232,98,26,0.15); border: 1px solid rgba(232,98,26,0.4);
    color: var(--orange-light); padding: 8px 20px; border-radius: 50px;
    font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; width: fit-content;
}
.hero_title {
    font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(60px, 10vw, 130px);
    color: #fff; line-height: 0.95; margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--orange-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero_subtitle {
    font-family: 'Cabin', sans-serif; font-size: 20px; color: rgba(255,255,255,0.7);
    font-weight: 300; letter-spacing: 1px; margin-bottom: 40px; max-width: 500px;
}
.hero_buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* FEATURES */
#features { padding: 80px 0; background: var(--warm-white); }
#features .container { display: flex; gap: 30px; width: 90%; max-width: 1200px; margin: 0 auto; }
.feature_card {
    flex: 1; background: #fff; border-radius: 16px; padding: 40px 30px; text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease; position: relative; overflow: hidden;
}
.feature_card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light)); transform: scaleX(0);
    transition: transform 0.3s ease;
}
.feature_card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.feature_card:hover::after { transform: scaleX(1); }
.feature_icon { font-size: 40px; margin-bottom: 18px; }
.feature_title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 10px; color: var(--dark); }
.feature_text { font-size: 15px; color: #777; line-height: 1.7; }

/* SECTION LABELS & TITLES */
.section_label {
    font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: var(--orange);
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px;
}
.section_label.light { color: var(--orange-light); }
.section_title {
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 42px;
    color: var(--dark); line-height: 1.15; margin-bottom: 20px;
}
.section_text { font-size: 16px; color: #666; line-height: 1.8; margin-bottom: 16px; }

/* ABOUT */
#about_section { padding: 100px 0; background: #fff; }
#about_section .container { display: flex; align-items: center; gap: 60px; width: 90%; max-width: 1200px; margin: 0 auto; }
.about_image {
    width: 45%; min-height: 450px; border-radius: 20px;
    background-image: url("../img/gallery/5.jpg"); background-size: cover; background-position: center;
    position: relative;
}
.about_image::after {
    content: ''; position: absolute; inset: -8px; border: 2px solid var(--orange);
    border-radius: 24px; opacity: 0.3; z-index: -1;
}
.about_content { width: 55%; }

/* DEALS */
#deals_banner {
    padding: 100px 0; background: var(--dark);
    background-image: url("../img/backgrounds/book_now.jpg"); background-size: cover;
    background-position: center; background-attachment: fixed; position: relative;
}
#deals_banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(18,18,18,0.93) 0%, rgba(26,26,26,0.88) 100%);
}
#deals_banner .container { position: relative; z-index: 2; width: 90%; max-width: 1200px; margin: 0 auto; text-align: center; }
.deals_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.deal_card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 35px 20px; text-align: center;
    transition: all 0.3s ease; backdrop-filter: blur(5px);
}
.deal_card:hover { transform: translateY(-5px); border-color: var(--orange); background: rgba(232,98,26,0.08); }
.deal_price {
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 32px;
    color: var(--orange); margin-bottom: 8px;
}
.deal_name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 12px; }
.deal_desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* OPENING HOURS */
#opening_hours { padding: 100px 0; background: var(--warm-white); }
#opening_hours .container {
    background: #fff; padding: 60px 70px; border-radius: 20px; width: 90%; max-width: 1100px; margin: 0 auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.06); display: flex; gap: 40px;
}
#opening_hours .left { width: 50%; }
#opening_hours .right { width: 50%; }
#opening_hours .section_title { color: var(--dark); }
#opening_hours .text { font-size: 15px; color: #777; line-height: 1.8; margin-bottom: 25px; }
#opening_hours .btn_primary { margin-top: 5px; }
#opening_hours .opening_hour { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
#opening_hours .opening_hour:last-child { border-bottom: none; }
#opening_hours .opening_hour .day {
    font-family: 'Outfit', sans-serif; font-weight: 700; text-transform: uppercase;
    font-size: 15px; color: var(--text-dark); letter-spacing: 0.5px;
}
#opening_hours .opening_hour .time {
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px; color: var(--orange);
}
#opening_hours .opening_hour .time.closed { color: #d61919; }

/* CTA SECTION */
#cta_section {
    padding: 80px 0; text-align: center;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}
#cta_section .container { width: 90%; max-width: 700px; margin: 0 auto; }
.cta_title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 36px; color: #fff; margin-bottom: 12px; }
.cta_text { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
#cta_section .btn_primary { background: #fff; color: var(--orange); border-color: #fff; }
#cta_section .btn_primary:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* GALLERY */
#gallery { padding: 30px 15px; display: flex; justify-content: space-around; background: var(--warm-white); }
#gallery .col_ { flex: 1 0 auto; height: auto; margin: 0 8px; }
#gallery .col_:before { content: ''; float: left; padding-top: 100%; }
#gallery .col_:nth-child(1) .gallery_image { background-image: url("../img/gallery/1.png"); }
#gallery .col_:nth-child(2) .gallery_image { background-image: url("../img/gallery/5.jpg"); }
#gallery .col_:nth-child(3) .gallery_image { background-image: url("../img/gallery/3.png"); transform: rotate(90deg); }
#gallery .col_:nth-child(4) .gallery_image { background-image: url("../img/gallery/4.png"); }
#gallery .col_:nth-child(5) .gallery_image { background-image: url("../img/gallery/2.png"); }
#gallery .col_:nth-child(6) .gallery_image { background-image: url("../img/gallery/6.jpg"); }
#gallery .col_:nth-child(7) .gallery_image { background-image: url("../img/gallery/7.png"); }
.gallery_image {
    height: 100%; background-size: cover; background-repeat: no-repeat; background-position: center;
    border-radius: 12px; transition: transform 0.4s ease;
}
.gallery_image:hover { transform: scale(1.03); }

/* SUB-PAGE HEADER */
.header {
    height: 500px; display: flex; flex-direction: column; background: var(--dark);
    background-image: url("../img/backgrounds/header.png"); background-size: cover; background-position: center;
    position: relative; z-index: 1;
}
.header::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.719) 0%, rgba(26, 26, 26, 0.655) 100%);
    z-index: -1;
}
.header .title {
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 64px;
    color: #ff8820; text-transform: uppercase; text-align: center;
    line-height: 1.1; margin: auto; padding-bottom: 40px;
}

/* FIND US */
.find_us_title {
    text-align: center; padding-top: 80px; font-size: 38px;
    font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--dark);
}
.find_us_address {
    text-align: center; font-size: 16px; color: #777; padding-top: 8px; padding-bottom: 10px;
    font-family: 'Cabin', sans-serif;
}
#map { display: flex; align-items: center; justify-content: center; padding: 35px 0 75px; }
#map iframe { height: 500px; width: 70%; border: none; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

/* CONTACT */
#contact { padding: 75px 0; }
#contact .container { display: flex; width: 90%; max-width: 1100px; margin: 0 auto; }
#contact .contact_form { width: 65%; padding-right: 20px; }
#contact .contact_info { width: 35%; padding-left: 20px; }
#contact .title {
    font-family: 'Outfit', sans-serif; font-size: 34px; padding-bottom: 25px;
    text-transform: uppercase; font-weight: 800; color: var(--dark);
}
#contact input {
    margin-bottom: 16px; padding: 14px 16px; height: auto; border: 1px solid #ddd;
    border-radius: 8px; font-family: 'Cabin', sans-serif; transition: border-color 0.3s;
}
#contact input:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 3px rgba(232,98,26,0.1); }
#contact textarea {
    margin-bottom: 16px; padding: 14px 16px; height: 150px; max-height: 150px; min-height: 150px;
    border: 1px solid #ddd; border-radius: 8px; font-family: 'Cabin', sans-serif; transition: border-color 0.3s;
}
#contact textarea:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 3px rgba(232,98,26,0.1); }
#contact .group_ { overflow: hidden; }
#contact .group_ input:first-child { width: 49%; float: left; }
#contact .group_ input:last-child { width: 49%; float: right; }
#contact button {
    padding: 14px 40px; display: block; border: none; cursor: pointer;
    background: var(--orange); color: #fff; border-radius: 8px;
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease;
}
#contact button:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,98,26,0.3); }
.contact_info .item {
    margin-bottom: 22px; display: flex; align-items: center;
    font-family: 'Cabin', sans-serif; font-size: 15px; color: var(--text-dark);
}
.contact_info .item a { color: inherit !important; font-family: 'Cabin', sans-serif; font-size: 15px; transition: color 0.3s; }
.contact_info .item a:hover { color: var(--orange) !important; }
.contact_info .item i { font-size: 22px; width: 27px; margin-right: 12px; color: var(--orange); display: flex; justify-content: center; }

/* FOOTER */
#footer { padding: 70px 0 50px; background: var(--dark); color: #fff; }
#footer .container { width: 65%; max-width: 100%; text-align: center; margin: 0 auto; }
.footer_tagline {
    font-family: 'Outfit', sans-serif; font-size: 16px; color: var(--orange-light);
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; font-weight: 600;
}
#footer .icons a { font-size: 22px; padding: 10px; color: rgba(255,255,255,0.7) !important; transition: color 0.3s; }
#footer .icons a:hover { color: var(--orange) !important; }
#footer .bottom_nav { display: flex; align-items: center; justify-content: center; }
#footer .bottom_nav a {
    font-family: 'Outfit', sans-serif; padding: 30px 20px; font-size: 15px;
    color: rgba(255,255,255,0.7); transition: color 0.3s; text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
}
#footer .bottom_nav a:hover { color: var(--orange); }
#footer .copyright { font-size: 13px; color: rgba(255,255,255,0.4); padding-bottom: 6px; font-family: 'Cabin', sans-serif; }
#footer .site_by { font-size: 13px; color: rgba(255,255,255,0.4); font-family: 'Cabin', sans-serif; }
#footer .site_by a { color: rgba(255,255,255,0.5) !important; font-weight: 600 !important; font-family: 'Cabin', sans-serif !important; transition: color 0.3s; }
#footer .site_by a:hover { color: var(--orange) !important; }

/* LEGACY - kept for sub-pages that use old structure */
.fixedSect { background-size: cover; background-attachment: fixed; }
#notice_modal .modal-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; }
#notice_modal a { color: #FFF !important; font-family: 'Outfit', sans-serif !important; text-align: center; display: block; font-size: 28px; width: 219px; margin: 0 auto; background-color: var(--orange); margin-top: 32px; padding: 9px; border-radius: 14px; }

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1275px) {
    .nav ul { padding-left: 12px; }
    .nav li a { padding: 20px 18px; }
}
@media screen and (max-width: 1100px) {
    .nav li a { padding: 20px 11px; }
    .nav .logo { width: 60px; }
    .nav .logo img { width: 60px; }
    .deals_grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 950px) {
    .nav { position: fixed; width: 100%; top: 0; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
    #hero { padding-top: 60px; }
    #hero .nav { position: fixed; top: 0; left: 0; right: 0; }
    .hero_title { font-size: clamp(48px, 10vw, 90px); }
    .hero_content { padding: 0 6%; padding-top: 80px; }
    #about_section .container { flex-direction: column; }
    .about_image { width: 100%; min-height: 300px; }
    .about_content { width: 100%; }
    #opening_hours .container { flex-direction: column; padding: 50px 40px; }
    #opening_hours .left, #opening_hours .right { width: 100%; }
    #opening_hours .left { margin-bottom: 30px; }
    .header { height: auto; padding-bottom: 50px; }
    .header .title { margin-top: 80px; font-size: 48px; width: auto; }
    .fixedSect { background-attachment: scroll; }
}
@media screen and (max-width: 869px) {
    #contact .container { flex-direction: column; }
    #contact .contact_form { width: 100%; padding: 0 20px 40px; }
    #contact .contact_info { padding-left: 0; width: 100%; padding: 0 20px; }
}
@media screen and (max-width: 768px) {
    #features .container { flex-direction: column; }
    .feature_card { padding: 30px 25px; }
    #gallery { flex-wrap: wrap; padding: 15px; }
    #gallery .col_ { width: 45%; margin: 6px; }
    #gallery .col_:nth-child(7) { display: none; }
    .deals_grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    #deals_banner { padding: 70px 0; }
    .cta_title { font-size: 28px; }
    .section_title { font-size: 32px; }
    #map iframe { width: 90%; }
    #footer .bottom_nav a { padding: 25px 12px; font-size: 13px; }
    #footer .container { width: 90%; }
}
@media screen and (max-width: 600px) {
    .hero_content { padding: 0 5%; padding-top: 80px; }
    .hero_buttons { flex-direction: column; }
    .btn_primary, .btn_outline { text-align: center; }
    .hero_subtitle { font-size: 16px; }
    #gallery .col_ { width: 90%; }
    #contact .group_ input:first-child, #contact .group_ input:last-child { width: 100%; float: none; }
    #opening_hours .container { padding: 40px 25px; }
    .section_title { font-size: 28px; }
    #map iframe { width: 95%; }
    .header .title { font-size: 42px; margin-top: 60px; }
}
@media screen and (max-width: 447px) {
    .normal_nav { display: none !important; }
    .responsive_nav { display: flex !important; }
    .nav_ { display: none; background: var(--dark); }
    .nav i { font-size: 20px; width: 50px; color: var(--text-light); }
    .nav ul { width: calc(100% - 113px); }
    .responsive_nav ul li a { color: var(--text-light); }
    #footer .bottom_nav { flex-wrap: wrap; }
    #footer .bottom_nav a { padding: 15px 10px; }
}
@media screen and (max-width: 380px) {
    .hero_title { font-size: 42px; }
    #contact .contact_form { padding: 0 5px 40px; }
    #contact .contact_info { padding: 0 5px; }
    .header .title { font-size: 36px; }
}