/* ===== FONTS ===== */
/* Poppins Font */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: local('Poppins Light'), local('Poppins-Light'),
         url('fonts/poppins-v24-latin-300.woff2') format('woff2'),
         url('fonts/poppins-v24-latin-300.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local('Poppins Regular'), local('Poppins-Regular'),
         url('fonts/poppins-v24-latin-regular.woff2') format('woff2'),
         url('fonts/poppins-v24-latin-regular.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: local('Poppins SemiBold'), local('Poppins-SemiBold'),
         url('fonts/poppins-v24-latin-600.woff2') format('woff2'),
         url('fonts/poppins-v24-latin-600.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: local('Poppins Bold'), local('Poppins-Bold'),
         url('fonts/poppins-v24-latin-700.woff2') format('woff2'),
         url('fonts/poppins-v24-latin-700.woff') format('woff');
}

/* Inter Font */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: local('Inter Light'), local('Inter-Light'),
         url('fonts/inter-v20-latin-300.woff2') format('woff2'),
         url('fonts/inter-v20-latin-300.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: local('Inter Regular'), local('Inter-Regular'),
         url('fonts/inter-v20-latin-regular.woff2') format('woff2'),
         url('fonts/inter-v20-latin-regular.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: local('Inter Medium'), local('Inter-Medium'),
         url('fonts/inter-v20-latin-500.woff2') format('woff2'),
         url('fonts/inter-v20-latin-500.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: local('Inter SemiBold'), local('Inter-SemiBold'),
         url('fonts/inter-v20-latin-600.woff2') format('woff2'),
         url('fonts/inter-v20-latin-600.woff') format('woff');
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #218d8d;
    --primary-dark: #1a6b6b;
    --primary-light: #2db0b0;
    --secondary-color: #e2007d;
    --accent-color: #c8a882;
    --text-color: #2c1810;
    --text-light: #6b5d54;
    --bg-color: #218d8d;
    --bg-secondary: #f8f9f5;
    --bg-dark: #e2007d;
    --border-color: #e5ddd5;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.7;
    background: #218d8d url('./2016-10_hb_bg_fullscreen2-1.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    hyphens: auto;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 60px 0;
    min-height: 60vh;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 300px;
    height: auto;
    display: inline-block;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #e2007d;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.content-header h1 {
    font-size: 2.5rem;
    color: #218d8d;
    margin-bottom: 15px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-header .subtitle {
    font-size: 1.5rem;
    color: #e2007d;
    font-weight: 400;
    margin-top: 10px;
}

.content-text {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.content-text h2 {
    font-size: 1.8rem;
    color: #218d8d;
    margin: 30px 0 20px;
    font-weight: 600;
    word-wrap: break-word;
}

.content-text h3 {
    font-size: 1.5rem;
    color: #218d8d;
    margin: 30px 0 20px;
    word-wrap: break-word;
}

.content-text p {
    font-size: 1.125rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-box {
    background: rgba(226, 0, 125, 0.1);
    border-left: 4px solid #e2007d;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(226, 0, 125, 0.15);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 60px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-header h2 {
    font-size: 2rem;
    color: #e2007d;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.address-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.address-block h3 {
    font-size: 1.25rem;
    color: #218d8d;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2007d;
}

.address-block p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.address-block p:last-child {
    margin-bottom: 0;
}

.address-block strong {
    color: #218d8d;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 30px 0;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    .container {
        padding: 0 15px;
    }

    .logo {
        max-width: 250px;
    }

    .content-header {
        padding: 20px 15px;
    }

    .content-header h1 {
        font-size: 1.75rem;
    }

    .content-header .subtitle {
        font-size: 1.1rem;
    }

    .content-text {
        padding: 25px 20px;
    }

    .content-text h2 {
        font-size: 1.5rem;
    }

    .content-text p {
        font-size: 1rem;
        text-align: left;
    }

    .highlight-box {
        padding: 20px 15px;
        font-size: 1.1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-content {
        padding: 40px 0;
    }

    .contact {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        max-width: 200px;
    }

    .content-header {
        padding: 15px 10px;
    }

    .content-header h1 {
        font-size: 1.5rem;
    }

    .content-header .subtitle {
        font-size: 1rem;
    }

    .content-text {
        padding: 20px 15px;
    }

    .content-text h2 {
        font-size: 1.3rem;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .address-block {
        padding: 20px 15px;
    }

    .highlight-box {
        padding: 15px 12px;
        font-size: 1rem;
    }
}
