/* Base CSS Styles */
/* Uncut Sans Regular */
@font-face {
    font-family: 'Uncut Sans';
    src: url('../font/Webfonts/Uncut-Sans-Regular.woff2') format('woff2'),
        url('../font/Webfonts/Uncut-Sans-Regular.woff') format('woff'),
        url('../font/Static/Uncut-Sans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Editor';
    src: url('../font/editors-note-font-family/EditorsNote-Semibold-iF664322be731c3.woff2') format('woff2'),
        url('../font/editors-note-font-family/EditorsNote-Semibold-iF664322be731c3.woff') format('woff'),
        url('../font/editors-note-font-family/EditorsNote-Semibold-iF664322be731c3.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Editor Italic';
    src: url('../font/EditorsNote-SemiboldItalic-iF664322be785e3.woff2') format('woff2'),
        url('../font/EditorsNote-SemiboldItalic-iF664322be785e3.woff') format('woff'),
        url('../font/EditorsNote-SemiboldItalic-iF664322be785e3.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

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

:root {
    /* Colors */
    --primary-color: #9E441B;
    --text-dark: #343333;
    --text-light: #6C6C6C;
    --bg-light: #F9F7F4;
    --bg-dark: #1A1A1A;
    --white1: #E9EBE9;
    --white: #FFFFFF;
    --border-radius: 8px;

    /* Typography */
    --font-primary: 'Uncut Sans', sans-serif;
    --font-secondary: 'Editor';
    --font-italic: 'Editor Italic';


    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Component Specific Weights */
    --button-font-weight: var(--font-weight-semibold);
    --heading-font-weight: var(--font-weight-semibold);
    --body-font-weight: var(--font-weight-regular);
}

body {
    font-family: var(--font-primary);
    font-weight: var(--body-font-weight);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: var(--heading-font-weight);
    line-height: 1.2;
    margin: 0 0 0.75em;
    color: var(--text-dark);
}

h1,
.h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2,
.h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.01em;
}

h3,
.h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: var(--font-weight-semibold);
}

h4,
.h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: var(--font-weight-semibold);
}

h5,
.h5 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.white {
    color: var(--white) !important;
}

/* Body Text */
p,
li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

p {
    margin: 0 0 1.5em;
}

/* Text Variations */
.lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

small,
.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

strong,
b {
    font-weight: var(--font-weight-semibold);
}

em,
i {
    font-style: italic;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--text-dark);
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

button,
.btn {
    cursor: pointer;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    max-width: 275px;
}

.btn-primary:hover {
    background-color: #9A4A2B;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

.btn-secondary:hover {
    background-color: #9A4A2B;
    transform: translateY(-2px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-boder {
    border-radius: 10px;
    overflow: hidden;
}

.center {
    text-align: center;
}

.black {
    color: var(--text-dark) !important;
}

.padding-block {
    padding-block: 40px;
}

.page-width {
    max-width: 1290px;
    margin: 0 auto;
}

.justify-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-menu-main a.btn {
    display: flex;
    justify-content: center;
    width: 156px;
}

@media (max-width: 1290px) {

    .padding-inline,
    .page-width {
        padding-inline: 20px;
    }
}

/* Responsive Styles */
@media (max-width: 968px) {
    .events-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tivoli-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 0;
    }

    .tivoli-left {
        order: 1;
    }

    .tivoli-right {
        order: 1;
        padding-top: 55px;
    }

    .tivoli-left img,
    .events-right img {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-width {
        padding: 0 20px;
    }

    .padding-inline {
        padding-inline: 20px !important;
    }

    .nav-menu,
    .nav-contact-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: 80vh;
        margin-top: 84px;
    }

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

    .hero-description {
        font-size: 16px;
    }

    .hero-info {
        display: none;
    }

    .events-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .partner-logos {
        gap: 30px;
    }

    .business-space {
        padding: 100px 0;
    }

    .business-content {
        font-size: 2rem;
    }

    .business-content p {
        font-size: 14px;
        padding: 0 20px;
    }

    .unforgettable-events,
    .tivoli-tennis,
    .heritage-modern {
        padding: 20px 0;
    }

    .events-left h2,
    .tivoli-right h2 {
        font-size: 2rem;
    }

    .events-right img,
    .tivoli-left img {
        height: 300px;
    }

    .heritage-header h2 {
        font-size: 1.8rem;
    }

    .heritage-header .subtitle {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    .modal-content {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .modal-image {
        display: none;
    }

    .modal-form {
        padding: 40px 30px;
    }

    .modal-form h3 {
        font-size: 1.5rem;
    }

    .footer-top {
        padding: 0;
    }

    .footer-left h3 {
        font-size: 1.5rem;
    }

    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .padding-block {
        padding-block: 20px;
    }

    .small-hide {
        display: none;
    }
}