/* 
 * Main Stylesheet
 * Colors:
 * - Background gradient: #0e1116 to #1f2b3a
 * - Accents: #00ffd1 (turquoise), #ff4de3 (electric pink)
 * - Headings: #ffffff
 * - Block backgrounds: #121c29 (dark blue), #2d2f45 (purple-gray)
 * - Fonts: Poppins, Rubik
 */

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg-start: #0e1116;
    --color-bg-end: #1f2b3a;
    --color-accent-turquoise: #00ffd1;
    --color-accent-pink: #ff4de3;
    --color-white: #ffffff;
    --color-block-dark: #121c29;
    --color-block-purple: #2d2f45;
    --color-text: rgba(255, 255, 255, 0.9);
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Rubik', sans-serif;
    --container-max: 1440px;
    --container-padding: 20px;
    --section-spacing: 100px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

html {
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent-turquoise);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-accent-pink);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 600;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-turquoise), var(--color-accent-pink));
    border-radius: 2px;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.6rem;
}

section {
    padding: var(--section-spacing) 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    font-family: var(--font-primary);
    font-size: 1.6rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-accent-turquoise), var(--color-accent-pink));
    color: var(--color-bg-start);
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--color-accent-pink), var(--color-accent-turquoise));
    color: var(--color-bg-start);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-nav {
    background-color: var(--color-accent-turquoise);
    color: var(--color-bg-start);
    padding: 0.8rem 2rem;
}

.btn-nav:hover {
    background-color: var(--color-accent-pink);
    color: var(--color-bg-start);
}

.btn-cookie {
    background-color: var(--color-accent-turquoise);
    color: var(--color-bg-start);
    padding: 0.8rem 2rem;
    margin-left: 2rem;
}

.btn-cookie:hover {
    background-color: var(--color-accent-pink);
    color: var(--color-bg-start);
}

/* Header & Navigation */
.main-header {
    padding: 2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(14, 17, 22, 0.9);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-button .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 1.6rem;
    position: relative;
}

.nav-list a:not(.btn)::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-turquoise), var(--color-accent-pink));
    transition: width var(--transition-speed) ease;
}

.nav-list a:not(.btn):hover {
    color: var(--color-white);
}

.nav-list a:not(.btn):hover::after {
    width: 100%;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-block-dark);
    padding: 1.5rem 0;
    z-index: 999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-notice p {
    margin-bottom: 0;
    font-size: 1.4rem;
}

/* Main Layout */
main {
    padding-top: 94px; /* Header height + padding */
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(14, 17, 22, 0.9) 0%, rgba(31, 43, 58, 0.8) 100%), url('./img/Xixby.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 2.5rem;
    font-size: 5.6rem;
    background: linear-gradient(90deg, var(--color-white), var(--color-accent-turquoise));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 4rem;
    color: var(--color-text-muted);
}

/* About Section */
.about-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    background-color: var(--color-block-dark);
}

.services h2 {
    text-align: center;
}

.services h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--color-block-purple);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 0 2rem;
}

.service-card h3 {
    margin-top: 2rem;
}

.service-card p {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

/* Why Choose Us Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit {
    background-color: var(--color-block-purple);
    padding: 3rem;
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed) ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.4rem;
    color: var(--color-accent-turquoise);
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-block-dark);
}

.testimonials h2 {
    text-align: center;
}

.testimonials h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.testimonial {
    background-color: var(--color-block-purple);
    border-radius: var(--border-radius);
    padding: 3rem;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.quote {
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.quote::before {
    content: """;
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--color-accent-turquoise);
    line-height: 1;
}

.client {
    font-weight: 600;
    color: var(--color-accent-pink);
}

/* Statistics Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat {
    background-color: var(--color-block-purple);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.stat-number {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--color-accent-turquoise);
    margin-bottom: 1rem;
}

.stat-label {
    font-weight: 500;
}

/* Blog Section */
.blog {
    background-color: var(--color-block-dark);
}

.blog h2 {
    text-align: center;
}

.blog h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.blog-card {
    background-color: var(--color-block-purple);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-speed) ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.blog-content p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.read-more {
    display: inline-block;
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform var(--transition-speed) ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Order Form Section */
.order-form {
    background: linear-gradient(135deg, var(--color-block-dark) 0%, var(--color-block-purple) 100%);
}

.order-form h2 {
    text-align: center;
}

.order-form h2::after {
    left: 50%;
    transform: translateX(-50%);
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-block-dark);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 2.5rem;
}

label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1.6rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-accent-turquoise);
}

option {
    background-color: var(--color-block-dark);
    color: var(--color-white);
    padding: 1rem;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin-right: 1rem;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 1.4rem;
}

button[type="submit"] {
    width: 100%;
    cursor: pointer;
}

/* Thank You Page */
.thank-you {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you h1 {
    margin-bottom: 3rem;
}

.thank-you p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.action-buttons {
    margin-top: 4rem;
}

/* Footer */
.main-footer {
    background-color: var(--color-block-dark);
    padding: 8rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 2rem;
}

.footer-info p {
    color: var(--color-text-muted);
}

.footer-contact address {
    font-style: normal;
    color: var(--color-text-muted);
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 1rem;
}

.footer-links a, .footer-legal a {
    color: var(--color-text-muted);
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--color-accent-turquoise);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    font-size: 1.4rem;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        flex: none;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-spacing: 70px;
    }
    
    html {
        font-size: 58%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .menu-button {
        display: flex;
        z-index: 1001;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-block-dark);
        transition: right var(--transition-speed) ease;
        z-index: 1000;
        padding: 10rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked ~ .menu-button .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle:checked ~ .menu-button .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-button .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.8rem;
    }
    
    form {
        padding: 3rem;
    }
    
    .cookie-notice .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice p {
        margin-bottom: 1.5rem;
    }
    
    .btn-cookie {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --section-spacing: 50px;
        --container-padding: 15px;
    }
    
    html {
        font-size: 55%;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .hero p {
        font-size: 1.6rem;
    }
    
    form {
        padding: 2rem;
    }
} 