@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #2C2C2C;
    --accent-color: #6C5CE7;
    --background-color: #F5F5F0;
    --highlight-color: #E8E8E8;
}
.hero p{
    color: white !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

header {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 1rem 0;
    min-height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--background-color);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--background-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--background-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    margin: 2rem 0;
}

section.hero {
    margin-top: 0;
}

section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

section p {
    color: var(--primary-color);
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--background-color);
    z-index: 2;
    padding: 2rem;
    background: rgba(44, 44, 44, 0.7);
    border-radius: 10px;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--background-color);
}

.btn-primary:hover {
    background-color: #5a4fd4;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
    animation: glowPulse 2s ease-in-out infinite;
}

.btn-secondary {
    background-color: transparent;
    color:var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(108, 92, 231, 0.8);
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--highlight-color);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

footer {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--background-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--background-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    z-index: 10000;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.privacy-popup p {
    margin-bottom: 1.5rem;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.privacy-popup-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-popup-buttons .btn-accept {
    background-color: var(--accent-color);
    color: var(--background-color);
}

.privacy-popup-buttons .btn-decline {
    background-color: transparent;
    color: var(--background-color);
    border: 2px solid var(--background-color);
}

.content-page {
    padding: 2rem 1rem;
}

.privacy-policy-page .content-page,
.terms-of-use-page .content-page,
.return-policy-page .content-page,
.cookies-policy-page .content-page {
    padding-left: 1rem;
    padding-right: 1rem;
}

.content-page h1 {
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.content-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.content-page p {
    margin-bottom: 1rem;
}

.content-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.success-page {
    text-align: center;
    padding: 4rem 1rem;
}

.success-page h1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.success-page p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .header-container {
        padding: 0 0.75rem;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    nav a {
        display: block;
        padding: 0.5rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    main {
        padding: 0 0.75rem;
    }
    
    section {
        margin: 1.5rem 0;
    }
    
    section h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card img {
        height: 180px;
        margin-bottom: 0.75rem;
    }
    
    .hero {
        height: 450px;
        border-radius: 5px;
    }
    
    .hero-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .content-page {
        padding: 1.5rem 0.75rem;
    }
    
    .content-page h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .content-page h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .privacy-popup {
        bottom: 10px;
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .privacy-popup p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .privacy-popup-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .privacy-popup-buttons button {
        width: 100%;
        padding: 0.75rem 1.25rem;
    }
    
    .success-page {
        padding: 3rem 0.75rem;
    }
    
    .success-page h1 {
        font-size: 2rem;
    }
    
    .success-page p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.5rem;
    }
    
    main {
        padding: 0 0.5rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .card h3 {
        font-size: 1.1rem;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content {
        padding: 1rem;
        max-width: 95%;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
    
    .footer-bottom {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .content-page {
        padding: 1rem 0.5rem;
    }
    
    .content-page h1 {
        font-size: 1.5rem;
    }
    
    .content-page h2 {
        font-size: 1.25rem;
    }
    
    .privacy-popup {
        padding: 1rem;
    }
    
    .privacy-popup p {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .hero {
        height: 350px;
    }
    
    .hero h1 {
        font-size: 1.25rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    section h2 {
        font-size: 1.25rem;
    }
    
    .card {
        padding: 0.75rem;
    }
}
