﻿/* ===================================
   MAGAZIN VARIABLES & RESET
   =================================== */
:root {
    --orange-primary: #003366;
    --orange-light: #004488;
    --orange-accent: #F59C00;
    --dark-bg: #1a1a1a;
    --grey-light: #f4f4f4;
    --white: #ffffff;
    --purple-gradient-1: #667eea;
    --purple-gradient-2: #764ba2;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    overflow: hidden;
    padding: 120px 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Floating article pages */
.floating-article {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    animation: floatArticle 20s infinite ease-in-out;
}

.floating-article.article-1 {
    width: 180px;
    height: 240px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.floating-article.article-2 {
    width: 150px;
    height: 200px;
    top: 60%;
    right: 8%;
    animation-delay: 3s;
    transform: rotate(12deg);
}

.floating-article.article-3 {
    width: 120px;
    height: 160px;
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
    transform: rotate(-8deg);
}

/* Floating icons */
.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 3rem;
    animation: floatIcon 15s infinite ease-in-out;
}

.floating-icon.icon-1 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon.icon-2 {
    bottom: 25%;
    right: 25%;
    animation-delay: 4s;
}

.floating-icon.icon-3 {
    top: 50%;
    left: 8%;
    animation-delay: 7s;
}

@keyframes floatArticle {
    0%, 100% {
        transform: translate(0, 0) rotate(-15deg);
    }
    33% {
        transform: translate(20px, -25px) rotate(-10deg);
    }
    66% {
        transform: translate(-15px, 15px) rotate(-20deg);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

.hero-content {
    position: relative;

    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-label i {
    margin-right: 8px;
}

.hero-content h1 {
    font-size: 3.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    display: block;
    text-align: center;
}

.hero-content h1 .subtitle {
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--white);
    background: linear-gradient(135deg, rgba(245, 156, 0, 0.85) 0%, rgba(200, 100, 0, 0.85) 100%);
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    margin-top: 15px;
    opacity: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto;
}

/* ===================================
   COMING SOON SECTION
   =================================== */
.coming-soon-section {
    padding: 100px 0;
    background: var(--white);
}

.coming-soon-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(0, 51, 102, 0.3);
}

.icon-wrapper i {
    font-size: 3.5rem;
    color: var(--white);
}

.coming-soon-content h2 {
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    background: var(--grey-light);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--orange-light);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--orange-primary);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--purple-gradient-1) 0%, var(--purple-gradient-2) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.newsletter-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ===================================
   TOPICS SECTION
   =================================== */
.topics-section {
    padding: 100px 0;
    background: var(--grey-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.topic-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--orange-primary);
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 51, 102, 0.2);
}

.topic-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.topic-icon i {
    font-size: 2rem;
    color: var(--white);
}

.topic-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 25px;
}

.topic-card ul {
    list-style: none;
    padding: 0;
}

.topic-card ul li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.topic-card ul li i {
    color: var(--orange-primary);
    margin-right: 12px;
    margin-top: 4px;
    font-size: 0.9rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--white);
    animation: floatCTA 12s infinite ease-in-out;
}

.floating-element.element-1 {
    width: 200px;
    height: 200px;
    top: -80px;
    right: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    width: 150px;
    height: 150px;
    bottom: -60px;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatCTA {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-cta,
.btn-cta-secondary {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary,
.btn-cta {
    background: var(--white);
    color: var(--orange-primary);
}

.btn-primary:hover,
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary,
.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover,
.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--orange-primary);
    transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.7rem;
    }

    .hero-content h1 .subtitle {
        font-size: 1.9rem;
    }

    .coming-soon-content h2 {
        font-size: 2.1rem;
    }

    .topics-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 55vh;
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content h1 .subtitle {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .floating-article,
    .floating-icon {
        opacity: 0.3;
    }

    .coming-soon-section {
        padding: 60px 0;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .icon-wrapper i {
        font-size: 3rem;
    }

    .coming-soon-content h2 {
        font-size: 1.9rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-content p {
        font-size: 1rem;
    }

    .topics-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cta,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.95rem;
    }

    .hero-content h1 .subtitle {
        font-size: 1.35rem;
        padding: 10px 24px;
    }

    .hero-label {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .coming-soon-content h2 {
        font-size: 1.65rem;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .topic-card {
        padding: 30px 20px;
    }

    .newsletter-content h2 {
        font-size: 1.7rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}
