/* static/css/style.css */

/* === CUSTOM FONTS & VARIABLES === */
:root {
    --primary-orange: #f38b18;
    --primary-yellow: #fbc108;
    --primary-blue: #3972c3;
    --primary-cyan: #01adef;
    --primary-green: #41bb35;
    --secondary-green: #7dce27;
    --dark-text: #060606;
    --light-bg: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === TYPOGRAPHY === */
body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* === FIXED SIDEBAR NAVIGATION === */
.sidebar-fixed {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-cyan));
    padding: 2rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-brand {
    padding: 0 1.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    margin-bottom: 1rem;
}

.sidebar-logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.sidebar-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sidebar-content {
    flex: 1;
    padding: 2rem 0;
    overflow-y: auto;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    transition: var(--transition);
    position: relative;
    border-radius: 5px;
    margin: 0 1.5rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.sidebar-nav a i {
    width: 24px;
    text-align: center;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.sidebar-nav a .nav-text {
    font-size: 1rem;
    transition: var(--transition);
}

.sidebar-footer {
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* === MAIN CONTENT === */
.main-content {
    margin-left: 280px;
    transition: var(--transition);
}

/* === HERO SECTION - FULL SCREEN === */
.hero-fullscreen {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 114, 195, 0.7), rgba(1, 173, 239, 0.6));
    z-index: 1;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-action i {
    font-size: 1.2rem;
}

.btn-facebook {
    background: #3b5998;
    color: white;
}

.btn-facebook:hover {
    background: #2d4373;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 89, 152, 0.5);
}

.btn-email {
    background: white;
    color: var(--primary-blue);
}

.btn-email:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* === MAGAZINE SECTION === */
.section-magazine {
    padding: 100px 0;
    background: var(--gray-light);
}

.image-column {
    position: relative;
}

.image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.magazine-image {
    max-width: 90%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.magazine-image:hover {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.content-column {
    display: flex;
    align-items: center;
    padding: 4rem 4rem;
}

.content-wrapper {
    max-width: 600px;
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.badge-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    opacity: 0.7;
}

.section-headline {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.divider {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
    margin-bottom: 2.5rem;
    width: 80px;
}

.divider-centered {
    margin: 2.5rem auto;
}

.text-columns p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

/* === GRID SECTION === */
.section-grid {
    padding: 100px 0;
    background: white;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.grid-item {
    grid-column: span 2;
}

.grid-item-large {
    grid-column: span 4;
}

@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-item-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    .grid-item,
    .grid-item-large {
        grid-column: span 1;
    }
}

.grid-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.grid-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.grid-card.featured {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.grid-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(57, 114, 195, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.card-excerpt {
    color: var(--dark-text);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--primary-orange);
}

/* === SPLIT SECTION === */
.section-split {
    padding: 100px 0;
    background: var(--gray-light);
}

.text-column {
    padding: 6rem 5rem;
    display: flex;
    align-items: center;
    background: white;
}

.image-column {
    position: relative;
}

.image-wrapper-split {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.split-image {
    max-width: 95%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.text-content {
    max-width: 650px;
}

.quote-block {
    background: linear-gradient(135deg, rgba(57, 114, 195, 0.05), rgba(1, 173, 239, 0.05));
    border-left: 4px solid var(--primary-blue);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 8px 8px 0;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.2;
    position: absolute;
    left: -10px;
    top: -10px;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark-text);
    position: relative;
    z-index: 1;
    margin: 0;
}

.section-paragraph {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.section-paragraph.highlight {
    background: linear-gradient(135deg, rgba(243, 139, 24, 0.1), rgba(251, 193, 8, 0.1));
    padding: 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

/* === CONTACT SECTION === */
.section-contact-minimal {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(243, 139, 24, 0.03));
    text-align: center;
}

.contact-lead {
    font-size: 1.2rem;
    line-height: 2;
    max-width: 700px;
    margin: 2rem auto;
    color: var(--dark-text);
}

.contact-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    min-width: 300px;
}

.btn-contact .btn-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.btn-facebook .btn-icon {
    background: #3b5998;
    color: white;
}

.btn-email .btn-icon {
    background: var(--primary-green);
    color: white;
}

.btn-contact .btn-text {
    text-align: left;
}

.btn-label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark-text);
}

.btn-sublabel {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--dark-text);
}

.btn-contact:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.btn-facebook:hover .btn-icon {
    background: #2d4373;
}

.btn-email:hover .btn-icon {
    background: var(--secondary-green);
}

.signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-medium);
}

.signature-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--dark-text);
    opacity: 0.8;
}

/* === FOOTER === */
.footer-minimal {
    background: var(--dark-text);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.95rem;
    opacity: 0.7;
    margin: 0;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.social-grid {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.email {
    background: var(--primary-green);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .sidebar-fixed {
        width: 240px;
    }
    
    .main-content {
        margin-left: 240px;
    }
    
    .hero-headline {
        font-size: 3.5rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .sidebar-fixed {
        width: 200px;
    }
    
    .main-content {
        margin-left: 200px;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .content-column,
    .text-column {
        padding: 3rem 2rem;
    }
    
    .section-headline {
        font-size: 2.5rem;
    }
    
    .btn-contact {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .section-grid {
        padding: 60px 0;
    }
    
    .section-magazine {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .sidebar-fixed {
        width: 70px;
        overflow: hidden;
    }
    
    .main-content {
        margin-left: 70px;
    }
    
    .sidebar-brand .sidebar-title,
    .sidebar-nav a .nav-text,
    .sidebar-footer .social-icons {
        display: none;
    }
    
    .sidebar-brand .logo-container {
        margin-bottom: 0;
    }
    
    .sidebar-nav a {
        padding: 0.9rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .sidebar-nav a i {
        margin-right: 0;
        width: auto;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-lead {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}