/* BrightOddsZone - Unique Premium Design */

:root {
    --boz-primary: #2C3E50;
    --boz-secondary: #E74C3C;
    --boz-accent: #FFD700;
    --boz-accent-dark: #FFA500;
    --boz-dark: #1a1a2e;
    --boz-light: #f8f9fa;
    --boz-text: #2c3e50;
    --boz-text-light: #7f8c8d;
    --boz-border: #e0e0e0;
    --boz-shadow: rgba(44, 62, 80, 0.1);
    --boz-shadow-hover: rgba(44, 62, 80, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--boz-text);
    line-height: 1.6;
    background: var(--boz-light);
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(44, 62, 80, 0.05) 1px, transparent 0),
        url('images/background-pattern.webp');
    background-size: 50px 50px, cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.95);
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--boz-dark);
}

/* Container */
.boz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.boz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--boz-shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.boz-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.boz-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.boz-logo:hover {
    transform: scale(1.05);
}

.boz-logo__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boz-logo__icon svg {
    width: 100%;
    height: 100%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.boz-logo__text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--boz-accent), var(--boz-accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

@media (max-width: 400px) {
    .boz-logo__text {
        font-size: 16px;
    }
}

/* Navigation */
.boz-nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.boz-nav__link {
    text-decoration: none;
    color: var(--boz-text);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.boz-nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--boz-accent);
    transition: width 0.3s ease;
}

.boz-nav__link:hover::after,
.boz-nav__link--active::after {
    width: 100%;
}

.boz-nav__link:hover,
.boz-nav__link--active {
    color: var(--boz-secondary);
}

.boz-nav__link--cta {
    background: linear-gradient(135deg, var(--boz-accent), var(--boz-accent-dark));
    color: var(--boz-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.boz-nav__link--cta::after {
    display: none;
}

.boz-nav__link--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.boz-nav__close {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--boz-dark);
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

/* Burger Menu */
.boz-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.boz-burger__line {
    width: 25px;
    height: 3px;
    background: var(--boz-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .boz-burger {
        display: flex;
    }

    .boz-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px var(--boz-shadow);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 60px 30px 30px;
    }

    .boz-nav.active {
        right: 0;
    }

    .boz-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .boz-nav__close {
        display: block;
    }
}

/* Hero Section */
.boz-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .boz-hero {
        min-height: 70vh;
    }
}

.boz-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(26, 26, 46, 0.9));
    z-index: 1;
}

.boz-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background-pattern.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 2;
}

.boz-hero__particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
}

.boz-hero__particles::before,
.boz-hero__particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--boz-accent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.boz-hero__particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.boz-hero__particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.boz-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--boz-accent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

.boz-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    width: 5px;
    height: 5px;
}

.boz-particle:nth-child(2) {
    top: 25%;
    left: 35%;
    animation-delay: 0.5s;
    width: 3px;
    height: 3px;
}

.boz-particle:nth-child(3) {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
    width: 4px;
    height: 4px;
}

.boz-particle:nth-child(4) {
    top: 40%;
    left: 15%;
    animation-delay: 1.5s;
    width: 6px;
    height: 6px;
}

.boz-particle:nth-child(5) {
    top: 35%;
    right: 25%;
    animation-delay: 2s;
    width: 3px;
    height: 3px;
}

.boz-particle:nth-child(6) {
    top: 50%;
    left: 45%;
    animation-delay: 2.5s;
    width: 5px;
    height: 5px;
}

.boz-particle:nth-child(7) {
    top: 45%;
    right: 10%;
    animation-delay: 3s;
    width: 4px;
    height: 4px;
}

.boz-particle:nth-child(8) {
    top: 65%;
    left: 25%;
    animation-delay: 3.5s;
    width: 3px;
    height: 3px;
}

.boz-particle:nth-child(9) {
    top: 70%;
    left: 50%;
    animation-delay: 4s;
    width: 5px;
    height: 5px;
}

.boz-particle:nth-child(10) {
    top: 55%;
    right: 35%;
    animation-delay: 4.5s;
    width: 4px;
    height: 4px;
}

.boz-particle:nth-child(11) {
    top: 80%;
    left: 30%;
    animation-delay: 5s;
    width: 3px;
    height: 3px;
}

.boz-particle:nth-child(12) {
    top: 75%;
    right: 20%;
    animation-delay: 5.5s;
    width: 6px;
    height: 6px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.7; }
    50% { transform: translateY(-20px) translateX(20px); opacity: 1; }
}

.boz-hero__content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.boz-hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--boz-accent);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--boz-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boz-hero__title {
    font-size: 56px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.boz-hero__subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.boz-hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.boz-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.boz-hero__scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.boz-hero__scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Buttons */
.boz-btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.boz-btn--primary {
    background: linear-gradient(135deg, var(--boz-accent), var(--boz-accent-dark));
    color: var(--boz-dark);
    border-color: var(--boz-accent);
}

.boz-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.boz-btn--secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.boz-btn--secondary:hover {
    background: white;
    color: var(--boz-dark);
}

.boz-btn--outline {
    background: transparent;
    color: var(--boz-dark);
    border-color: var(--boz-dark);
}

.boz-btn--outline:hover {
    background: var(--boz-dark);
    color: white;
}

.boz-btn--large {
    padding: 16px 40px;
    font-size: 18px;
}

.boz-btn--full {
    width: 100%;
}

/* Section Header */
.boz-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.boz-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(231, 76, 60, 0.1);
    color: var(--boz-secondary);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.boz-section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.boz-section-subtitle {
    font-size: 18px;
    color: var(--boz-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Bars */
.boz-featured {
    padding: 100px 0;
    position: relative;
}

.boz-featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.boz-bar-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--boz-shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.boz-bar-card:nth-child(1) { animation-delay: 0.1s; }
.boz-bar-card:nth-child(2) { animation-delay: 0.2s; }
.boz-bar-card:nth-child(3) { animation-delay: 0.3s; }
.boz-bar-card:nth-child(4) { animation-delay: 0.4s; }
.boz-bar-card:nth-child(5) { animation-delay: 0.5s; }

.boz-bar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--boz-shadow-hover);
}

.boz-bar-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.boz-bar-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.boz-bar-card:hover .boz-bar-card__image {
    transform: scale(1.1);
}

.boz-bar-card__rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.boz-bar-card__stars {
    color: var(--boz-accent);
    font-size: 14px;
}

.boz-bar-card__score {
    font-weight: 700;
    color: var(--boz-dark);
    font-size: 16px;
}

.boz-bar-card__content {
    padding: 25px;
}

.boz-bar-card__title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--boz-dark);
}

.boz-bar-card__location {
    color: var(--boz-text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.boz-bar-card__description {
    color: var(--boz-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.boz-bar-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.boz-bar-card__feature {
    padding: 6px 12px;
    background: rgba(231, 76, 60, 0.1);
    color: var(--boz-secondary);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Advantages Section */
.boz-advantages {
    padding: 100px 0;
    background: white;
}

.boz-advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.boz-advantage {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.boz-advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--boz-shadow);
}

.boz-advantage__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--boz-accent-dark);
}

.boz-advantage__icon svg {
    width: 35px;
    height: 35px;
}

.boz-advantage__title {
    font-size: 22px;
    margin-bottom: 15px;
}

.boz-advantage__text {
    color: var(--boz-text-light);
    line-height: 1.6;
}

/* Experience Section */
.boz-experience {
    padding: 100px 0;
}

.boz-experience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.boz-experience__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--boz-shadow);
}

.boz-experience__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.boz-experience__image-wrapper:hover .boz-experience__img {
    transform: scale(1.05);
}

.boz-experience__content {
    padding: 20px;
}

.boz-experience__text {
    margin-bottom: 20px;
    color: var(--boz-text);
    line-height: 1.8;
}

/* Testimonials */
.boz-testimonials {
    padding: 100px 0;
    background: white;
}

.boz-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.boz-testimonial {
    background: var(--boz-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--boz-shadow);
    transition: all 0.3s ease;
}

.boz-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--boz-shadow-hover);
}

.boz-testimonial__rating {
    color: var(--boz-accent);
    font-size: 18px;
    margin-bottom: 15px;
}

.boz-testimonial__text {
    color: var(--boz-text);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.boz-testimonial__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.boz-testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--boz-accent), var(--boz-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--boz-dark);
    font-weight: 700;
    font-size: 18px;
}

.boz-testimonial__name {
    font-weight: 600;
    color: var(--boz-dark);
}

.boz-testimonial__location {
    font-size: 14px;
    color: var(--boz-text-light);
}

/* Footer */
.boz-footer {
    background: var(--boz-dark);
    color: white;
    padding: 60px 0 20px;
}

.boz-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.boz-footer__title {
    color: var(--boz-accent);
    font-size: 24px;
    margin-bottom: 15px;
}

.boz-footer__text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.boz-footer__heading {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.boz-footer__list {
    list-style: none;
}

.boz-footer__list li {
    margin-bottom: 10px;
}

.boz-footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.boz-footer__link:hover {
    color: var(--boz-accent);
}

.boz-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.boz-footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .boz-hero__title {
        font-size: 36px;
    }

    .boz-hero__subtitle {
        font-size: 18px;
    }

    .boz-section-title {
        font-size: 32px;
    }

    .boz-experience__grid {
        grid-template-columns: 1fr;
    }

    .boz-featured__grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Popup */
.boz-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.boz-popup.active {
    display: flex;
}

.boz-popup__content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popupSlide 0.3s ease-out;
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.boz-popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--boz-text);
}

.boz-popup__title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--boz-dark);
}

.boz-popup__text {
    color: var(--boz-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Form Styles */
.boz-form {
    max-width: 600px;
    margin: 0 auto;
}

.boz-form__group {
    margin-bottom: 25px;
    text-align: left;
}

.boz-form__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--boz-dark);
}

.boz-form__input,
.boz-form__textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--boz-border);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.boz-form__input:focus,
.boz-form__textarea:focus {
    outline: none;
    border-color: var(--boz-accent);
}

.boz-form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Page Styles */
.boz-page {
    padding-top: 100px;
    min-height: 100vh;
}

.boz-page__header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(26, 26, 46, 0.9));
    color: white;
    margin-bottom: 60px;
}

.boz-page__title {
    font-size: 48px;
    margin-bottom: 15px;
    color: white;
}

.boz-page__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.boz-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.boz-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--boz-text);
}

.boz-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 32px;
}

.boz-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.boz-content ul,
.boz-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.boz-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}
