/* GameChanceHub.com - Unique Premium Design */

:root {
    --primary-color: #1a3d5c;
    --secondary-color: #c9a961;
    --accent-color: #8b6f47;
    --text-primary: #2c2c2c;
    --text-secondary: #5a5a5a;
    --background-light: #f8f6f2;
    --background-white: #ffffff;
    --border-color: #e0ddd6;
    --shadow-light: rgba(26, 61, 92, 0.1);
    --shadow-medium: rgba(26, 61, 92, 0.15);
    --shadow-heavy: rgba(26, 61, 92, 0.25);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-light);
    overflow-x: hidden;
    position: relative;
}

/* Background Pattern */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background-pattern.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(26, 61, 92, 0.05) 100%);
    z-index: 0;
    pointer-events: none;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Container */
.container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container, .logo-anchor{
    display: flex;
    align-items: center;
    /* gap: 0.75rem; */
}

.logo-icon {
    width: 40px;
    height: 40px;
    transition: var(--transition-bounce);
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 1.3rem;
    }
}

.primary-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-smooth);
}

.nav-menu-link:hover::after,
.nav-menu-link.active-link::after {
    width: 100%;
}

.nav-menu-link:hover,
.nav-menu-link.active-link {
    color: var(--primary-color);
}

.burger-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 7.5px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.burger-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(135deg, rgba(26, 61, 92, 0.9) 0%, rgba(139, 111, 71, 0.85) 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/background-pattern.webp') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.primary-action-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    transition: var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-action-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-main-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-subtitle-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* About Preview */
.about-preview-block {
    background: var(--background-white);
}

.about-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.secondary-link-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-smooth);
    margin-top: 1rem;
}

.secondary-link-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.statistics-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: var(--transition-bounce);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.stat-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-description {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advantages */
.advantages-showcase {
    background: var(--background-light);
}

.advantages-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.advantage-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: var(--transition-bounce);
}

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

.advantage-symbol {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.advantage-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.advantage-description {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Hotels Showcase */
.hotels-showcase-section {
    background: var(--background-white);
}

.hotels-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.hotel-card-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
}

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

.hotel-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.hotel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hotel-card-item:hover .hotel-image-wrapper img {
    transform: scale(1.1);
}

.hotel-rating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-rating-badge::before {
    content: '★';
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.hotel-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hotel-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.hotel-card-location::before {
    content: '📍';
    font-size: 1rem;
}

.hotel-card-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.hotel-card-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.hotel-card-features li:last-child {
    border-bottom: none;
}

.hotel-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hotel-card-button {
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-card-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

/* Premium Services */
.premium-services-showcase {
    background: var(--background-light);
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    transition: var(--transition-bounce);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.service-icon-box {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-heading {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.service-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Amenities */
.amenities-display-section {
    background: var(--background-white);
}

.amenities-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.amenity-item-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--background-light);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.amenity-item-box:hover {
    background: white;
    box-shadow: 0 4px 15px var(--shadow-light);
    transform: translateX(5px);
}

.amenity-mark {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.amenity-label {
    font-weight: 500;
    color: var(--text-primary);
}

/* Reviews */
.reviews-display-section {
    background: var(--background-light);
}

.reviews-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition-bounce);
}

.review-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.review-stars {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.review-content {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-color);
}

.reviewer-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-subheading {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.contact-popup-overlay.active {
    display: flex;
}

.contact-popup-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.popup-close-button:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.popup-success-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.popup-success-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.popup-success-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Contact Form */
.contact-form-section {
    background: var(--background-white);
    padding: 5rem 0;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
}

@media (max-width: 450px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit-button {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

/* Responsive Design */
@media (max-width: 991px) {
    .burger-toggle {
        display: flex;
    }

    .primary-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px var(--shadow-light);
        z-index: 999;
    }

    .primary-navigation.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-menu-item {
        width: 100%;
    }

    .nav-menu-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-description-text {
        font-size: 1.1rem;
    }

    .section-main-title {
        font-size: 2.25rem;
    }

    .about-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .statistics-display {
        grid-template-columns: 1fr;
    }

    .advantages-grid-layout,
    .services-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid-layout {
        grid-template-columns: 1fr;
    }

    .reviews-grid-layout {
        grid-template-columns: 1fr;
    }

    .footer-content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2rem;
    }

    .section-main-title {
        font-size: 2rem;
    }

    .advantages-grid-layout,
    .services-grid-layout {
        grid-template-columns: 1fr;
    }

    .hotels-cards-container {
        grid-template-columns: 1fr;
    }
}

/* Page-specific styles */
.page-header-section {
    background: linear-gradient(135deg, rgba(26, 61, 92, 0.95) 0%, rgba(139, 111, 71, 0.9) 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.page-header-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-section {
    padding: 4rem 0;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.content-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.content-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li::before {
    content: '→';
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 1rem;
}
