/* =====================================
   RESET & GLOBAL STYLES
===================================== */


img {
    max-width: 100%;
    height: auto;
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fafafa;
    color: #222;
}



/* =====================================
   NAVBAR
===================================== */

.navbar {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #b30000;
    flex-shrink: 0;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.navbar ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: #222;          /* ngjyra normale */
    padding: 5px 10px;    /* hapësirë për efektin e kutisë */
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
}

/* Efekti kur mousi mbi link */
.navbar ul li a:hover {
    color: #7a0000;
    background-color: transparent; /* mund ta lësh të bardhë ose transparent */
}

/* Efekti kur linku është aktiv (klikuar) */
.navbar ul li a.active {
    color: white;              /* ose mund të mbetet #222 */
    background-color: #b30000; /* kuq */
}

/* Auth buttons and right-side nav */
.navbar-auth {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    right: 10px;
    top: 18px;
    transform: translateY(-50%);
}

.navbar-auth .navbar-link,
.navbar-auth .logout-btn,
.navbar-auth a {
    text-decoration: none;
    font-size: 1rem;
    color: #222;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
}

.navbar-auth .navbar-link:hover,
.navbar-auth a:hover {
    color: #7a0000;
}

.navbar-auth .logout-btn {
    color: #161111;
}

.navbar-auth .logout-btn:hover {
    color: #7a0000;
}

/* Lang switch styling */
.lang-switch {
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.lang-switch a {
    text-decoration: none;
    color: #222;
    font-size: 0.95rem;
}

.lang-switch a:hover {
    color: #7a0000;
}




/* =====================================
   HERO SECTION
===================================== */

/* Për shqip index në root */
.hero {
    height: 400px;
    background: url('../assets/img/teatri.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 60px;
    color: #fff;
    position: relative;
}



.hero::after {
   content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;  /* sa pjesë e imazhit të zbehet në fund */
    background: linear-gradient(to bottom, transparent, #fafafa); 
    /* #fafafa → ngjyra e background-it të faqes */
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 550px;
    z-index: 2;         
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-content .btn {
    margin-bottom: 20px; /* Hapësira poshtë butonave */
}
.hero-learn {
    color: #b30000;      /* ngjyrë e kuqe */
    font-weight: bold;   /* pak më i dallueshëm */
    margin-left: 5px;    /* pak distancë nga paragrafi */
    text-decoration: none;
    cursor: pointer;
}

.hero-learn:hover {
    text-decoration: underline; /* efekt i thjeshtë */
}


/* =====================================
   BUTTONS
===================================== */

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn.primary {
    background: linear-gradient(135deg, #b30000 0%, #8a0000 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(179, 0, 0, 0.3);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #8a0000 0%, #6a0000 100%);
    box-shadow: 0 6px 16px rgba(179, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn.secondary {
    background: white;
    color: #b30000;
    border: 2px solid #b30000;
    box-shadow: 0 4px 12px rgba(179, 0, 0, 0.1);
}

.btn.secondary:hover {
    background: #b30000;
    color: white;
    box-shadow: 0 6px 16px rgba(179, 0, 0, 0.3);
    transform: translateY(-2px);
}

.card-button-container {
    padding: 0 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-reserve {
    padding: 10px 20px !important;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(179, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    box-shadow: 0 6px 16px rgba(179, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-more {
    padding: 10px 20px !important;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn.small {
    padding: 7px 14px;
    font-size: 0.9rem;
}
.load-more {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.load-more-btn {
    padding: 12px 25px;
    border: none;
    background: #b30000;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.load-more-btn:hover {
    background: #7a0000;
}

.buttons {
    width: 100%;
    display: flex;
    justify-content: center;  /* qendërzo butonin */
    margin-top: 25px;         /* hapësirë mbi buton */
}


/* =====================================
   FEATURED SHOWS
===================================== */
.shows-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.featured {
    padding: 50px 40px;
    text-align: center;
}


.featured h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* fikson maksimum 3 kolona */
    gap: 25px; /* distanca midis kartave */
}

/* Responsive */
@media (max-width: 992px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr); /* 2 kolona për tablet */
    }
}

@media (max-width: 600px) {
    .card-container {
        grid-template-columns: 1fr; /* 1 kolona për celular */
    }
}
.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card h3 {
    padding: 10px 15px;
    font-size: 1.3rem;
}

.card p {
    padding: 0 15px;
    color: #555;
    font-size: 0.95rem;
}

.card .price {
    display: block;
    padding: 10px 15px;
    font-weight: bold;
    color: #b30000;
}



/* =====================================
   NEWS SECTION
===================================== */

.news {
    padding: 25px 40px;
}

/* =====================================
   NEWS SECTION - MODERN PORTAL STYLE
===================================== */

.news {
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f9fafb 100%);
}

.news-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns for all news in one row */
    gap: 20px;
    padding: 0;
}

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.news-card-link .btn-more {
    text-decoration: none;
}

.news-card-link h3,
.news-card-link h3:hover,
.news-card-link h3:focus {
    text-decoration: none;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: visible; /* let full images show */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.news-card:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px; /* fixed box for consistent card heights */
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover; /* fill box uniformly - all same size */
    display: block;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.01);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.news-card:hover .news-overlay {
    background: rgba(179, 0, 0, 0.15);
}

.news-content {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: #b30000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
    word-break: break-word;
    hyphens: auto;
    min-height: calc(1.3rem * 1.4 * 2); /* keep card heights even for long titles */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 auto 0;
    word-break: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-footer .btn-more {
    padding: 10px 20px !important;
    font-size: 0.95rem;
}

.news-card:hover .btn-more {
    background: #7a0000;
    color: white;
    box-shadow: 0 4px 12px rgba(179, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-container {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 26px;
    }
}

@media (max-width: 768px) {
    .news {
        padding: 40px 20px;
    }
    
    .news-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 22px;
    }
    .news-image-wrapper {
        height: 220px;
    }
    
    .news-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .news {
        padding: 30px 16px;
    }
    
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .news-content {
        padding: 16px 20px;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    .news-image-wrapper {
        height: 200px;
    }
}

.news h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}



/* =====================================
   ACTORS (Global styles)
===================================== */
.actor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.actor-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.actor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Ensure uniform image dimensions for actor photos */
.actor-card img,
.actor-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Keep actor names on one line to avoid uneven card heights */
.actor-card h3,
.actor-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Make button align consistently at the bottom of the info section */
.actor-info {
    display: flex;
    flex-direction: column;
}

.actor-buttons {
    margin-top: auto;
}

@media (max-width: 768px) {
    .actor-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    .actor-card img,
    .actor-image {
        height: 200px;
    }
}
/* =====================================
   TICKETS SECTION
===================================== */

.tickets {
    padding: 60px 40px;
    text-align: center;
}

.ticket-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.ticket-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ticket-card h3 {
    margin-bottom: 10px;
}
@media (max-width: 600px) {

    /* INFO SHFAQJE */
    .ticket-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ticket-info img {
        width: 80%; /* zgjero në 80% të gjerësisë së modalit */
        max-width: 250px;
    }

    .ticket-details {
        margin-top: 10px;
    }

    /* SEATS */
    .seat-row {
        justify-content: center; /* qendro rreshtat e vendeve */
    }

    .seat-row button {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .seat-row span {
        display: none; /* fsheh letrën e rreshtit për celular */
    }

    /* LEGEND */
    .legend {
        flex-direction: column;
        align-items: flex-start;
    }

    /* BUTTONS */
    .continue-btn, .pay-btn {
        max-width: 90%;
    }

    /* STAGE */
    .stage {
        font-size: 14px;
        padding: 8px 0;
    }
}


/* =====================================
   SHOWS PAGE
===================================== */

.shows-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #b30000;
    background: white;
    color: #b30000;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #b30000;
    color: white;
}

.show-list {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* fikson 3 kolona */
    gap: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .show-list {
        grid-template-columns: repeat(2, 1fr); /* 2 kolona për tablet */
    }
}

@media (max-width: 600px) {
    .show-list {
        grid-template-columns: 1fr; /* 1 kolona për celular */
    }
}


.show-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.show-item:hover {
    transform: translateY(-5px);
}

.show-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.show-item .content {
    padding: 18px;
}

.show-item h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.show-item p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
}

.show-meta {
    font-size: 0.9rem;
    color: #444;
}

.show-item .price {
    font-size: 1.1rem;
    color: #b30000;
    font-weight: bold;
}



/* =====================================
   ACTORS PAGE
===================================== */
.actors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}

.actor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* TABLET */
@media (max-width: 900px) {
    .actor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .actor-grid {
        grid-template-columns: 1fr; /* 1 actor per row */
    }
}

.actor-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.actor-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}



.actor-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.actor-card:hover {
    transform: translateY(-5px);
}

.actor-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.actor-card .details {
    padding: 18px;
}

.actor-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.actor-role {
    color: #b30000;
    font-weight: bold;
    margin-bottom: 10px;
}

.actor-card p {
    font-size: 0.95rem;
    color: #555;
}

.actor-specialties {
    font-size: 0.9rem;
    color: #444;
}

.actor-contact {
    margin-top: 12px;
}

.actor-contact a {
    display: inline-block;
    padding: 8px 16px;
    background: #b30000;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.actor-contact a:hover {
    background: #7a0000;
}



/* =====================================
   NEWS PAGE (CARD STYLE)
===================================== */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 85%;
    margin: auto;
}



.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 20px;
    margin-top: 10px;
}

.card-info p {
    color: #555;
    margin-top: 10px;
}

.card .read-more {
    color: #b30000;
    font-weight: bold;
    text-decoration: none;
}

/* =====================
   CONTACT SECTION
===================== */

.contact-section {
    padding: 60px 40px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    align-items: stretch;
    margin-top: 20px;
}


/* Mobile - 600px e poshtë */
@media (max-width: 600px) {
    .contact-wrapper {
        grid-template-columns: 1fr;  /* 1 kolona */
        justify-items: center;       /* qendërzon elementët horizontalisht */
        gap: 20px;
    }

    .contact-form,
    .contact-map {
        width: 100%;                 /* zgjero në plotë gjerësinë */
        max-width: 400px;            /* opsionale, për të mos qenë shumë e madhe */
    }
}

.contact-form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: bold;
    margin-bottom: 6px;
    color: #b30000;
}

.input-group input,
.input-group textarea {
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 1rem;
}

.input-group textarea {
    height: 120px;
    resize: vertical;
}

.send-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    font-size: 1rem;
}

/* MAP */
.contact-map {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}




/* =====================================
   FOOTER
===================================== */

.footer {
    background: #111;
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 50px;
}

.footer h4, h3 {
    margin-bottom: 10px;
}

.footer a {
    color: #bbb;
    display: block;
    text-decoration: none;
    margin: 5px 0;
}

.footer-bottom {
    background: #000;
    text-align: center;
    padding: 15px;
    color: #aaa;
}/* Tablet - 900px e poshtë */
@media (max-width: 900px) {
    .footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
    }
}

/* Mobile - 600px e poshtë */
@media (max-width: 600px) {
    .footer {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 30px 20px;
    }

    .footer a {
        margin: 8px 0;
    }

    /* Auth buttons and right-side nav */
.navbar-auth {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    right: 10px;
    top: 18px;
    transform: translateY(-50%);
}
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* vendose hamburger menu më vonë nëse do */
    }

    .navbar {
        padding: 10px 20px;
    }
}


.navbar .logo {
    display: flex;          /* vendos elementët në një rresht */
    align-items: center;    /* vendos ikonën dhe tekstin në qendër vertikalisht */
    gap: 5px;               /* hapësirë e vogël midis logos dhe tekstit */
    font-size: 1.6rem;
    font-weight: bold;
    color: #b30000;
    text-decoration: none;  /* largon underline në <a> */
}

.navbar .logo img {
    width: 40px;            /* madhësia e SVG */
    height: 40px;
}

.navbar .logo span {
    line-height: 1;         /* eliminon hapësirën shtesë vertikale */
    vertical-align: middle; /* siguron qendrim vertikal */
}



/* MAIN BOX */
.ticket-modal {
    margin-top: 40px; 
    margin-bottom: 80px/* nëse do pak hapësirë nga lart */
}

/* HEADER */
.ticket-info {
    display: flex;
    gap: 20px;
    background-color: #f1e9c9;
    border: #e0d7b6 2px solid;
}

.ticket-info img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.ticket-details h2 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

/* STEPS */
.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.step {
    width: 28px;
    height: 28px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.step.active {
    background: #b30000;
    color: white;
}

/* STAGE */
.section-title {
    text-align: center;
    margin-top: 10px;
}

.stage {
    margin: 20px auto;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #152239;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

/* SEAT GRID */
.seats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.seat-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    justify-content: center;
}



.seat-row span {
    width: 20px;
    font-weight: bold;
}

/* SEAT BUTTONS */
.seat-row button {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 5px;
    background: #f1e9c9;
    cursor: pointer;
    font-size: 0.8rem;
}

.seat-row button:hover {
    background: #e0d7b6;
}

.selected {
    background: #b30000 !important;
    color: white;
}

.occupied {
    background: #111 !important;
    color: white;
    pointer-events: none;
}

/* SUMMARY */
.summary {
    
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.summary .price {
    color: #b30000;
}

/* BUTTON */
.continue-btn {
    width: 360px;              /* e njëjta hapësirë sa seat-row */
    margin: 25px auto 0 auto;  /* qendërzo butonin */
    display: block;
    margin-top: 25px;
    padding: 12px 0;
    background: #b30000;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}





.continue-btn:hover {
    background: #7a0000;
}
/* LEGEND STYLE */
.legend {
    display: flex;
    justify-content: center;  /* Qendërzo ikonat */
    align-items: center;
    gap: 18px; /* distancë më e bukur */
    margin: 20px auto;
}


.legend .item {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

/* Available seat color */
.legend .available {
    background: #444;
     /* gri e ulëseve të lira */
}

/* Selected seat color */
.legend .selected {
    background: #00b34a; /* jeshile e zgjedhur */
}

/* Occupied seat color */
.legend .occupied {
    background: #ff4747; /* e kuqe e zënë */
}
.hidden {
    display: none;
}

.continue {
    margin-top: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.hero {
    height: auto;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

.hero {
    background-image: url("../assets/img/teatri.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none; /* fshehur fillimisht */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.4rem;
    cursor: pointer;
    color: #b30000;
}

.modal h2 {
    margin-bottom: 15px;
}

.modal p {
    margin-bottom: 20px;
}

.modal .confirm-btn {
    padding: 12px 25px;
    background: #b30000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.modal .confirm-btn:hover {
    background: #7a0000;
}
/* BOOK NOW BUTTON */ 
.book-btn { 
    margin-top: 12px; 
    padding: 10px 18px; 
    background: #b30000; 
    color: white;    
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    transition: 0.3s; 
} 
.book-btn:hover { 
    background: #7a0000;
}

.about-theater {
    display: flex;              /* vendos flex layout */
    gap: 30px;                  /* distanca midis imazhit dhe tekstit */
    flex-wrap: wrap;            /* për responsive */
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.about-img-left {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    flex-shrink: 0; /* mos e zvogëlo imazhin */
}

.about-text {
    flex: 1; /* tekstet zënë hapësirën e mbetur */
    min-width: 250px;
}



/* MOBILE */
@media (max-width: 768px) {
    .about-img-left {
        float: none;
        display: block;
        width: 100%;
        margin: 0 0 20px 0;
    }
}
.actor-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.actor-actions a {
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

/* Contact */
.contact-btn {
    background: #b30000;
    color: white;
}
.contact-btn:hover {
    background: #7a0000;
}

/* Learn More */
.learn-btn {
    background: #ffffff;
    color: #b30000;
    border: 1px solid #b30000;
}
.learn-btn:hover {
    background: #b30000;
    color: white;
}
/* Largojmë fleksin që i zhvendoste në të majtë */
.main-content {
    display: block; /* default block layout */
    padding: 50px 40px;
}

/* Shows */
.featured {
    padding: 50px 40px;
    text-align: center;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolona si më parë */
    gap: 25px;
}

@media (max-width: 992px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .card-container {
        grid-template-columns: 1fr;
    }
}

/* News */
.news {
    padding: 50px 40px;
    text-align: center;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.card {
    display: flex;
    flex-direction: column;
}

.card .book-btn {
    align-self: flex-start; 
    margin-left: 10px; 
}


.social-links {
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    color: #3b5998; /* për Facebook */
    font-weight: bold;
}

.social-links a:last-child {
    color: #E4405F; /* për Instagram */
}
/* ABOUT THEATER */
.about-theater {
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.main-content.actor-details{
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.about-img-left {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.actor-text {
    flex: 1;
    min-width: 250px; /* parandalon që teksti të shkojë shumë i vogël */
}



.learn-btn {
    padding: 10px 18px;
    background: #ffffff;
    color: #b30000;
    border: 1px solid #b30000;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: inline-block;
    margin-top: 12px;
}

.learn-btn:hover {
    background: #b30000;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-theater {
        flex-direction: column;
        align-items: center;
    }

    .about-img-left {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .actor-text {
        text-align: center;
    }
}
/* ========================================= */
/* CONFIRM MODAL (identik me screenshot-in) */
/* ========================================= */

.confirm-modal-container {
    background: white;
    width: 90%;
    max-width: 850px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 14px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 26px;
    font-weight: 600;
}

.close-modal {
    font-size: 28px;
    cursor: pointer;
}

.confirm-subtitle {
    margin-top: 5px;
    color: #444;
    font-size: 20px;
}

.confirm-divider {
    height: 2px;
    background: #d6a84d;
    margin: 20px 0;
}

.confirm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.confirm-row {
    display: flex;
    gap: 20px;
}

.confirm-col,
.confirm-col-full {
    flex: 1;
}

.confirm-col-full {
    width: 100%;
}

.confirm-input {
    display: flex;
    align-items: center;
    background: #f8f2df;
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #e5d9b8;
}

.confirm-input input {
    border: none;
    background: none;
    flex: 1;
    padding-left: 10px;
    font-size: 15px;
}

.confirm-input input:focus {
    outline: none;
}

.confirm-summary-box {
    background: #f8f2df;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #e5d9b8;
    display: flex;
    justify-content: space-between;
}

.confirm-summary-values {
    text-align: right;
}

.total-price {
    color: #8a0020;
    font-weight: bold;
    font-size: 20px;
}

.confirm-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn-back {
    width: 45%;
    padding: 14px;
    background: none;
    border: 2px solid #d6a84d;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.btn-confirm {
    width: 45%;
    padding: 14px;
    background: #8a0020;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.btn-confirm:hover {
    background: #9d0023;
}
/* ==========================
   TYPOGRAPHY & CONTAINER
========================== */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
.container { padding: 0 40px; }

/* ==========================
   TABLET
========================== */
@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    .container { padding: 0 20px; }
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 600px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }

    .navbar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero {
        padding: 60px 15px;
    }

    .hero p {
        font-size: 1rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* ==========================
   HAMBURGER MENU
========================== */
/* Hamburger i fshehur në desktop */
.hamburger {
    display: none; /* Fsheh hamburger për ekranet e mëdha (desktop) */
}

/* Vetëm në mobile/tablet */
@media (max-width: 768px) {
    .hamburger {
        display: flex;          /* Shfaq hamburger */
        position: absolute;     /* ose fixed */
        top: 20px;
        right: 20px;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 300;
    }
}

.hamburger {
    display: none; /* do të shfaqet vetëm në mobile/tablet */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #b30000;
    border-radius: 2px;
}

/* ==========================
   NAVBAR RESPONSIVE
========================== */
/* Navbar default */
/* Fsheh menu në desktop dhe mobile fillimisht */
.nav-links {
    display: none !important; /* !important siguron që nuk do të mbikëqyret nga CSS tjetër */
    flex-direction: column;
    gap: 15px;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    transition: all 0.3s ease;
}

/* Kur shtohet klasa show, shfaq menu */
.nav-links.show {
    display: flex !important;
}

/* Hamburger i fshehur në desktop */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 200; /* për të qenë mbi elementet e tjerë */
}

/* Hamburger span */
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #b30000;
    border-radius: 2px;
}

/* Vetëm në mobile shfaq hamburger */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute; /* ose fixed */
        top: 20px;
        right: 20px;
        z-index: 300;
    }
}
.ad-sidebar {
    position: sticky;
    top: 20px;
    width: 220px;

    max-height: 80vh;          /* sidebar ka lartësi fikse */
    overflow-y: auto;          /* shfaq scroll vertikal */
    overflow-x: hidden;        /* mos lejo scroll horizontal */

    display: flex;
    flex-direction: column;    /* reklamat njëra mbi tjetrën */
    gap: 20px;

    padding-right: 5px;
}
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }

    .ad-sidebar {
        position: relative;
        width: 100%;
        max-height: none;

        display: flex;
        flex-direction: row;
        gap: 15px;

        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;

        padding: 10px 0;
    }

    .ad-sidebar .ad {
        flex: 0 0 200px;
    }
}

@media (max-width: 600px) {
    .ad-sidebar {
        gap: 10px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .ad-sidebar .ad {
        flex: 0 0 160px;
    }
}
@media (min-width: 993px) {
    .ad-sidebar {
        position: sticky;
        top: 20px;

        width: 230px;

        max-height: 80vh;
        overflow-y: auto;
        overflow-x: hidden;

        display: flex;
        flex-direction: column;
        gap: 20px;

        padding-right: 6px;
    }

    .ad-sidebar .ad {
        flex-shrink: 0;         /* === KJO E NDALON ZVOGËLIMIN === */
    }

    .ad-sidebar .ad img {
        width: 100%;
        height: auto;           /* mos e deformo dhe mos e zvogëlo */
        display: block;
    }
}
.ticket-form-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ticket-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.ticket-form-container .form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.ticket-form-container label {
    margin-bottom: 5px;
    font-weight: bold;
}

.ticket-form-container input[type="text"],
.ticket-form-container input[type="email"],
.ticket-form-container input[type="tel"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.payment-options {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.payment-options label {
    font-weight: normal;
}

.ticket-form-container .pay-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #4caf50;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.ticket-form-container .pay-btn:hover {
    background: #45a049;
}

/* =====================
   RESPONSIVE - MOBILE
===================== */
@media (max-width: 600px) {
    .payment-options {
        flex-direction: column;
        gap: 10px;
    }
}
@media(min-width: 769px){
    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
    }
}
.ad-sidebar {
    white-space: nowrap;
    overflow-x: auto;
}
.ad-sidebar .ad {
    flex: 0 0 200px;
}
/* Fsheh hamburger vetëm për desktop */
@media (min-width: 1025px) {
    .hamburger {
        display: none;
    }
}

/* =====================================
   PURCHASE FORM STYLING
===================================== */

.ticket-form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ticket-form-container h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #222;
}

.purchase-form-wrapper h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #555;
    border-bottom: 2px solid #b30000;
    padding-bottom: 8px;
}

/* SUMMARY SECTION */
.purchase-summary-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #b30000;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item label {
    font-weight: 600;
    color: #555;
}

.summary-value {
    text-align: right;
    color: #222;
    margin: 0;
    font-size: 1rem;
}

.summary-item.highlight {
    background: white;
    padding: 15px;
    border-radius: 6px;
    margin-top: 10px;
}

.summary-item.highlight label {
    color: #b30000;
    font-size: 1.05rem;
}

.summary-item.highlight .summary-value.price {
    font-size: 1.4rem;
    color: #b30000;
    font-weight: bold;
}

/* BUYER SECTION */
.purchase-buyer-section {
    margin-bottom: 20px;
}

/* BUYER FIELDS GRID */
.buyer-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .buyer-fields {
        grid-template-columns: 1fr;
    }
}

/* FORM STYLING */
.ticket-form-container .form-group {
    margin-bottom: 15px;
}

.ticket-form-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    font-size: 0.95rem;
}

.ticket-form-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
}

.ticket-form-container input:focus {
    outline: none;
    border-color: #b30000;
    box-shadow: 0 0 3px rgba(179, 0, 0, 0.3);
}

/* PAY BUTTON */
.ticket-form-container .pay-btn {
    width: 100%;
    padding: 12px;
    background: #b30000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.ticket-form-container .pay-btn:hover {
    background: #7a0000;
}
