/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Stengazeta', serif;
    font-weight: 400;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 40px;
    color: #2c3350;
    line-height: 1.2;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c2e50 0%, #5e3434 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Stengazeta', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #5c6bcc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #5c6fcc;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.connect-btn {
    background: #5c6bcc;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.connect-btn:hover {
    background: #4a64b8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background: #f8f9fa;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    color: #2c3250;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.google-play-btn img {
    width: 240px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.google-play-btn img:hover {
    transform: scale(1.05);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

/* Rymdkapsel Section */
.rymdkapsel-section {
    background: linear-gradient(135deg, #2c3a50 0%, #5e3434 100%);
    padding: 100px 0;
    color: white;
}

.rymdkapsel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.rymdkapsel-image img {
    width: 100%;
    border-radius: 20px;
}

.rymdkapsel-text .section-title {
    color: white;
    margin-bottom: 30px;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ecf0f1;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    margin-top: 60px;
}

.benefit-item:nth-child(5) {
    grid-column: 1 / 3;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.benefit-icon {
    margin-bottom: 30px;
}

.benefit-icon img {
    width: 60px;
    height: 60px;
}

.benefit-title {
    font-size: 18px;
    color: #2c3250;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-text {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #2c3450 0%, #5e3434 100%);
    padding: 100px 0;
}

.reviews-section .section-title {
    color: white;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.review-card {
    background: #001668;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
}

.reviewer-avatar {
    margin-bottom: 20px;
}

.reviewer-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.reviewer-name {
    font-size: 16px;
    color: #f8fff1;
    margin-bottom: 20px;
    font-weight: 600;
}

.review-text {
    color: #f8fff1;
    font-size: 16px;
    line-height: 1.5;
    font-style: italic;
}

/* Gallery Section */

/* Gallery Section */
.gallery-section {
    background: white;
    padding: 100px 0;
}

.gallery-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item.wide {
    grid-column: 1 / 3;
}

.gallery-item img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.02);
}


/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2c2f50 0%, #5e3434 100%);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text .section-title {
    color: white;
    margin-bottom: 30px;
}

.contact-description {
    font-size: 18px;
    color: #ecf0f1;
    line-height: 1.7;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.contact-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: #5c7ccc;
}

.submit-btn {
    width: 100%;
    background: #5c72cc;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #4a60b8;
}

/* Footer */
.footer {
    background: #2c3350;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #34415e;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Stengazeta', serif;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #5c6bcc;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #5c6fcc;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    color: #c0c7bd;
    font-size: 14px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #5c72cc;
}

.cookie-content h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2f50;
}

.cookie-content p {
    text-align: center;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.accept-btn {
    background: #5c76cc;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accept-btn:hover {
    background: #4a69b8;
}

.reject-btn {
    background: transparent;
    color: #5c6fcc;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c3250;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-radius: 0;
        backdrop-filter: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .connect-btn {
        display: none;
    }
    
    .hero-content,
    .rymdkapsel-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefit-item:nth-child(5) {
        grid-column: 1;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: 1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-description,
    .section-description {
        font-size: 16px;
    }
    
    .google-play-btn img {
        width: 200px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .cookie-content {
        padding: 20px;
    }
    
    .benefits-grid {
        gap: 30px;
    }
    
    .reviews-grid {
        gap: 20px;
    }
}