@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=EB+Garamond:wght@400;500;600&display=swap');

:root {
    --primary: #B8A9C9;
    --accent: #C0C0C0;
    --background: #FFFFFF;
    --text: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--background);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--text);
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.hamburger:hover span {
    background-color: var(--primary);
}

.hamburger.active:hover span {
    background-color: var(--primary);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text);
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: var(--text);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
    width: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background-color: var(--text);
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--background);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px 30px 30px;
    overflow-y: auto;
}

.mobile-menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 3px;
    background-color: var(--text);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
    background-color: var(--primary);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.mobile-menu a {
    color: var(--text);
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--accent);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: all;
}

section {
    padding: 4rem 0;
}

.hero {
    background: linear-gradient(135deg, rgba(184, 169, 201, 0.15) 0%, rgba(192, 192, 192, 0.65) 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--background);
    text-align: center;
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 169, 201, 0.4) 0%, rgba(192, 192, 192, 0.4) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    color: var(--background);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 3rem;
    letter-spacing: -0.02em;
}



.hero p {
    font-size: 1.35rem;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    font-weight: 400;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-icon {
    font-size: 2.5rem;
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    display: inline-block;
    transform: scale(1);
}

.hero-icon:hover {
    transform: translateY(-8px) scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--text);
    color: var(--background);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn:hover {
    background-color: var(--primary);
    opacity: 1;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: var(--background);
    border: 1px solid var(--accent);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--accent);
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

footer {
    background-color: var(--text);
    color: var(--background);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--background);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.privacy-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.privacy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.privacy-popup.active {
    display: flex;
}

.privacy-popup-content {
    background-color: var(--background);
    padding: 2rem;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 20px;
    border-radius: 5px;
}

.privacy-popup-content h2 {
    margin-bottom: 1rem;
}

.privacy-popup-content p {
    margin-bottom: 1rem;
}

.privacy-popup-close {
    background-color: var(--text);
    color: var(--background);
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    margin-top: 1rem;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    
    .menu-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .logo{
        font-size: 1rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    
    nav ul {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 7rem 0 5rem;
        background-attachment: scroll;
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
        padding-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .hero-icons {
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .hero-icon {
        font-size: 1.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    body {
        font-size: 16px;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        background-attachment: scroll;
        min-height: 45vh;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .hero h1 {
        font-size: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .hero h1::after {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-icons {
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .hero-icon {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    body {
        font-size: 15px;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

