/* ============================================
   ADMR ARAD - Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #0d4a5a;
    --primary-light: #1a6b7a;
    --secondary: #1a8a6b;
    --secondary-light: #2aaa85;
    --accent: #ffc107;
    --accent-dark: #ff9800;
    --bg-light: #e8f4f0;
    --bg-lighter: #f0f7f4;
    --bg-white: #f9fdfc;
    --footer-bg: #0d3d4a;
    --text-dark: #0d4a5a;
    --text-body: #3a5a63;
    --text-muted: #6a8a93;
    --card-shadow: 0 4px 20px rgba(13, 74, 90, 0.08);
    --card-shadow-hover: 0 8px 30px rgba(13, 74, 90, 0.14);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Navbar ---------- */
.navbar-spacer {
    height: 80px;
}

#mainNavbar {
    background: rgba(255, 255, 255, 0.97);
    padding: 12px 0;
    transition: all var(--transition);
    box-shadow: none;
    z-index: 1000;
}

#mainNavbar.scrolled {
    padding: 6px 0;
    box-shadow: 0 2px 20px rgba(13, 74, 90, 0.1);
    background: rgba(255, 255, 255, 0.99);
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-icon svg {
    transition: transform var(--transition);
}

.navbar-brand:hover .logo-icon svg {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-dark) !important;
    padding: 8px 14px !important;
    position: relative;
    transition: color var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--transition);
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-right-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link-blog {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 8px 12px;
}

.nav-link-blog:hover,
.nav-link-blog.active {
    color: var(--secondary);
}

.btn-contact {
    background: var(--primary);
    color: #fff !important;
    border: none;
    padding: 8px 24px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.btn-contact:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 138, 107, 0.3);
}

/* ---------- Page Headers ---------- */
.page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, #d4ede5 50%, #c5e8dc 100%);
    padding: 60px 0 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.page-header .sparkle {
    color: var(--secondary);
    margin-right: 8px;
}

/* Sun decoration */
.sun-deco {
    position: absolute;
    top: 10px;
    right: 50px;
    width: 90px;
    height: 90px;
}

.sun-deco-body {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    position: absolute;
    top: 17px;
    left: 17px;
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.35);
}

.sun-deco-ray {
    position: absolute;
    width: 4px;
    height: 14px;
    background: var(--accent);
    border-radius: 2px;
    left: 43px;
}

.sun-deco-ray:nth-child(1) { top: 0; }
.sun-deco-ray:nth-child(2) { bottom: 0; }
.sun-deco-ray:nth-child(3) { width: 14px; height: 4px; top: 43px; left: 0; }
.sun-deco-ray:nth-child(4) { width: 14px; height: 4px; top: 43px; left: auto; right: 0; }
.sun-deco-ray:nth-child(5) { top: 8px; left: 65px; transform: rotate(45deg); }
.sun-deco-ray:nth-child(6) { bottom: 8px; left: 18px; transform: rotate(45deg); }
.sun-deco-ray:nth-child(7) { top: 8px; left: 18px; transform: rotate(-45deg); }
.sun-deco-ray:nth-child(8) { bottom: 8px; left: 65px; transform: rotate(-45deg); }

/* Cloud decoration */
.cloud-deco {
    position: absolute;
    opacity: 0.25;
}

.cloud-deco svg {
    fill: var(--primary);
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #d4ede5 40%, #b8ddd0 100%);
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 0 60px;
}

.hero-content h1 {
    font-size: 2.6rem;
    color: var(--primary);
    line-height: 1.35;
    max-width: 750px;
    margin: 0 auto 20px;
}

.hero-content h1 .sparkle-icon {
    color: var(--secondary);
    font-size: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

.hero-sun {
    position: absolute;
    top: 20px;
    right: 8%;
    z-index: 1;
}

/* Hero carousel/slider */
.hero-slider {
    position: relative;
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
    border-radius: var(--radius);
}

.hero-slider img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ---------- Section Styles ---------- */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-bg-light {
    background-color: var(--bg-lighter);
}

.section-bg-white {
    background-color: #ffffff;
}

.section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
}

.section-title .sparkle {
    color: var(--secondary);
    margin-right: 6px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* ---------- Home Sections ---------- */

/* Cine Suntem Preview */
.cine-suntem-preview {
    background: var(--bg-lighter);
}

.cine-suntem-preview .preview-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.cine-suntem-preview .preview-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cine-suntem-preview .preview-image:hover img {
    transform: scale(1.03);
}

.preview-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* Activitati Preview */
.activitati-preview .activity-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
}

.activitati-preview .activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.activitati-preview .activity-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.activitati-preview .activity-card-body {
    padding: 20px;
}

.activitati-preview .activity-card-body h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Feature list items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-dot.orange { background: linear-gradient(135deg, #ff9800, #ff5722); color: #fff; }
.feature-dot.green { background: linear-gradient(135deg, #4caf50, #2e7d32); color: #fff; }
.feature-dot.blue { background: linear-gradient(135deg, #2196f3, #1565c0); color: #fff; }

/* Parallax Section */
.parallax-section {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 74, 90, 0.85) 0%, rgba(26, 138, 107, 0.75) 100%);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.parallax-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.parallax-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.parallax-badge h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
}

/* Proiecte Section */
.proiecte-section .project-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
    height: 100%;
}

.proiecte-section .project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.proiecte-section .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.proiecte-section .project-card-body {
    padding: 20px;
}

.proiecte-section .project-card-body h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.proiecte-section .project-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------- Cine Suntem Page ---------- */
.about-main-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.about-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 18px;
}

/* Misiune Section */
.misiune-section {
    padding: 60px 0;
}

.misiune-section .section-title {
    color: var(--secondary);
}

.misiune-list {
    list-style: none;
    padding: 0;
}

.misiune-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
}

.misiune-list li .check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Organizare section */
.organizare-section {
    background: var(--bg-lighter);
    padding: 60px 0;
}

.organizare-section .org-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

/* Parteneriate section */
.parteneriate-section {
    padding: 60px 0;
}

.parteneriate-section .sparkle-icon {
    color: var(--secondary);
    font-size: 2rem;
}

/* ---------- Activitati Page ---------- */
.activity-block {
    padding: 50px 0;
}

.activity-block:nth-child(even) {
    background: var(--bg-lighter);
}

.activity-block .activity-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.activity-block .activity-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-block .activity-image:hover img {
    transform: scale(1.03);
}

.activity-block h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.activity-block p {
    color: var(--text-body);
    line-height: 1.75;
}

/* ---------- Galerie Page ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 74, 90, 0.7));
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: #fff;
    margin: 0;
    font-weight: 600;
}

/* ---------- Blog Page ---------- */
.blog-grid {
    display: grid;
    gap: 30px;
}

.blog-grid.top-row {
    grid-template-columns: repeat(2, 1fr);
}

.blog-grid.bottom-rows {
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-body {
    padding: 22px;
}

.blog-card .blog-category {
    font-size: 0.82rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.blog-card .blog-title {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card .blog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Contact Page ---------- */
.contact-map-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.contact-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5e6d0, #e8d5c0);
    opacity: 0.95;
}

.contact-map-bg iframe {
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0.6;
}

.contact-form-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--card-shadow-hover);
    max-width: 440px;
    margin: 60px 0;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-form-card .form-control {
    border: 1.5px solid #dce8e4;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.contact-form-card .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(26, 138, 107, 0.1);
}

.contact-form-card .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition);
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 138, 107, 0.3);
}

.contact-info-bar {
    background: #fff;
    padding: 50px 0;
}

.contact-info-item {
    text-align: center;
    padding: 20px;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-info-icon.phone { background: linear-gradient(135deg, #4caf50, #2e7d32); color: #fff; }
.contact-info-icon.email { background: linear-gradient(135deg, #2196f3, #1565c0); color: #fff; }
.contact-info-icon.address { background: linear-gradient(135deg, #9c27b0, #6a1b9a); color: #fff; }

.contact-info-item h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
}

/* ---------- Sustinatori Page ---------- */
.supporter-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
    height: 100%;
}

.supporter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.supporter-card img {
    max-height: 80px;
    margin-bottom: 15px;
    filter: grayscale(30%);
    transition: filter var(--transition);
}

.supporter-card:hover img {
    filter: grayscale(0%);
}

.supporter-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.supporter-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: color var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

.footer-bottom {
    padding-bottom: 25px;
}

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

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-left: 20px;
    transition: color var(--transition);
}

.footer-bottom-link:hover {
    color: #fff;
}

/* ---------- Placeholder Images ---------- */
.placeholder-img {
    background: linear-gradient(135deg, var(--bg-light), #c5ddd5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px 0;
    }
    
    .navbar-right-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-grid.top-row,
    .blog-grid.bottom-rows {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-social {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .sun-deco {
        display: none;
    }
    
    .blog-grid.top-row,
    .blog-grid.bottom-rows {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .contact-form-card {
        margin: 30px auto;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
}

/* ---------- Animations ---------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-secondary-custom { background-color: var(--secondary) !important; }
