/*=================================================
    ILLUSIONBOOTH V2
    RESPONSIVE.CSS
==================================================*/

/*=================================================
  LARGE DESKTOPS
=================================================*/

@media (max-width: 1500px) {

    :root {
        --container: 1240px;
    }

    h1 {
        font-size: 64px;
    }

    h2 {
        font-size: 48px;
    }

    .menu {
        gap: 26px;
    }

    .navbar-buttons {
        gap: 14px;
    }

    .why-grid,
    .press-grid,
    .polaroid-grid {
        gap: 60px;
    }
}

/*=================================================
  LAPTOPS / SMALL DESKTOPS
=================================================*/

@media (max-width: 1200px) {

    .container {
        width: min(94%, 1120px);
    }

    h1 {
        font-size: 58px;
    }

    h2 {
        font-size: 44px;
    }

    .navbar {
        padding: 16px 0;
    }

    .logo img {
        height: 56px;
    }

    .menu {
        gap: 20px;
    }

    .menu a {
        font-size: 14px;
    }

    .navbar-buttons .phone {
        display: none;
    }

    .hero-content {
        max-width: 690px;
    }

    .hero-stats {
        gap: 42px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card-wide {
        grid-column: span 1;
    }

    .why-grid,
    .press-grid,
    .polaroid-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .why-image-main img {
        height: 560px;
    }

    .gallery-grid {
        grid-auto-rows: 95px;
    }

    .packages-grid,
    .testimonials-grid {
        gap: 20px;
    }

    .package-card {
        padding: 36px 28px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.9fr;
        gap: 45px;
    }

    .footer-grid > :last-child {
        grid-column: 1 / -1;
    }
}

/*=================================================
  TABLETS
=================================================*/

@media (max-width: 992px) {

    body.menu-open {
        overflow: hidden;
    }

    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 30px;
    }

    .navbar .container {
        position: relative;
    }

    .navbar-buttons {
        margin-left: auto;
        margin-right: 14px;
    }

    .navbar-buttons .btn-gold {
        padding: 13px 22px;
        font-size: 13px;
    }

    .menu-toggle {
        position: relative;
        z-index: 1002;
        width: 46px;
        height: 46px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 1px solid rgba(200, 160, 77, 0.35);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        color: var(--black);
        cursor: pointer;
    }

    .menu-toggle span {
        width: 21px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .menu {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 1001;
        width: min(390px, 88vw);
        height: 100vh;
        padding: 110px 28px 40px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.12);
        transform: translateX(105%);
        visibility: hidden;
        transition:
            transform 0.4s ease,
            visibility 0.4s ease;
    }

    .menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .menu > li {
        border-bottom: 1px solid var(--border);
    }

    .menu > li > a {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 600;
    }

    .submenu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 0 0 14px;
        overflow: hidden;
        visibility: visible;
        opacity: 1;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        transition:
            max-height 0.35s ease,
            padding 0.35s ease;
    }

    .dropdown:hover .submenu {
        top: auto;
    }

    .dropdown.open .submenu {
        max-height: 430px;
        padding: 4px 0 16px 14px;
    }

    .submenu li {
        margin: 0;
    }

    .submenu a {
        min-height: 42px;
        display: flex;
        align-items: center;
        color: var(--gray);
        font-size: 14px;
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.42);
        opacity: 0;
        visibility: hidden;
        transition: 0.35s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero {
        min-height: 760px;
        height: auto;
        padding: 150px 0 90px;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-stats {
        margin-top: 50px;
    }

    .services,
    .why-us,
    .gallery,
    .packages,
    .testimonials,
    .contact {
        padding: 95px 0;
    }

    .press-booth,
    .polaroid-booth {
        padding: 105px 0;
    }

    .section-title {
        margin-bottom: 55px;
    }

    .why-grid,
    .press-grid,
    .polaroid-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        max-width: 720px;
        margin: 0 auto;
    }

    .why-badge {
        right: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-showcase {
        min-height: 620px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 35px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 280px;
    }

    .gallery-item,
    .gallery-item.gallery-large,
    .gallery-item.gallery-tall,
    .gallery-item.gallery-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }

    .package-card.featured,
    .package-card.featured:hover {
        transform: none;
    }

    .press-content,
    .polaroid-content {
        text-align: center;
    }

    .press-list {
        max-width: 540px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .press-visual {
        order: 2;
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .polaroid-wall {
        min-height: 610px;
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .contact-info {
        max-width: 720px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid > :last-child {
        grid-column: auto;
    }
}

/*=================================================
  MOBILE LANDSCAPE / SMALL TABLETS
=================================================*/

@media (max-width: 768px) {

    :root {
        --radius: 16px;
    }

    .container {
        width: min(92%, 680px);
    }

    h1 {
        font-size: clamp(42px, 10vw, 54px);
    }

    h2 {
        font-size: clamp(36px, 8vw, 44px);
    }

    p {
        font-size: 16px;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .logo img {
        height: 50px;
    }

    .navbar-buttons .btn-gold {
        display: none;
    }

    .hero {
        min-height: 720px;
        padding: 130px 0 80px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content p {
        margin: 0 auto;
        font-size: 17px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons .btn-gold,
    .hero-buttons .btn-white {
        min-width: 210px;
    }

    .hero-stats {
        justify-content: center;
        gap: 26px;
        margin-top: 46px;
    }

    .hero-stats h2 {
        font-size: 34px;
    }

    .hero-stats span {
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 430px;
    }

    .service-card-content {
        padding: 26px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-image-main img {
        height: 480px;
    }

    .why-badge {
        right: 8px;
        bottom: 24px;
        width: 145px;
        min-height: 145px;
        border-width: 5px;
    }

    .why-badge strong {
        font-size: 40px;
    }

    .video-showcase {
        min-height: 560px;
    }

    .video-showcase-content {
        padding: 90px 0;
        text-align: center;
    }

    .video-showcase-content p {
        margin: 0 auto;
    }

    .stats-section {
        padding: 65px 0;
    }

    .stat-item h3 {
        font-size: 48px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 360px;
    }

    .gallery-caption {
        opacity: 1;
        transform: none;
    }

    .gallery-item::before {
        opacity: 1;
    }

    .press-visual {
        min-height: 520px;
    }

    .newspaper-card:first-child {
        width: 69%;
        height: 425px;
    }

    .newspaper-card:last-child {
        width: 62%;
        height: 380px;
    }

    .polaroid-wall {
        min-height: 560px;
    }

    .polaroid-photo {
        width: 215px;
        padding: 10px 10px 50px;
    }

    .polaroid-photo img {
        height: 245px;
    }

    .polaroid-photo:nth-child(1) {
        left: 2%;
    }

    .polaroid-photo:nth-child(2) {
        right: 0;
    }

    .polaroid-photo:nth-child(3) {
        left: 25%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .contact-form {
        padding: 30px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 28px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*=================================================
  MOBILE
=================================================*/

@media (max-width: 576px) {

    .container {
        width: min(90%, 520px);
    }

    h1 {
        font-size: clamp(38px, 11vw, 48px);
    }

    h2 {
        font-size: clamp(34px, 9vw, 42px);
    }

    h3 {
        font-size: 27px;
    }

    .btn-gold,
    .btn-white {
        width: 100%;
        padding: 16px 26px;
    }

    .menu {
        width: 100%;
    }

    .hero {
        min-height: 700px;
        padding-top: 115px;
    }

    .hero-content .premium {
        font-size: 11px;
        letter-spacing: 1.8px;
    }

    .hero-buttons {
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn-gold,
    .hero-buttons .btn-white {
        min-width: 0;
    }

    .hero-stats {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-stats > div {
        padding: 0 6px;
    }

    .hero-stats h2 {
        font-size: 28px;
    }

    .hero-stats span {
        font-size: 11px;
    }

    .scroll-down {
        display: none;
    }

    .services,
    .why-us,
    .gallery,
    .packages,
    .testimonials,
    .contact {
        padding: 78px 0;
    }

    .press-booth,
    .polaroid-booth {
        padding: 85px 0;
    }

    .section-title {
        margin-bottom: 42px;
    }

    .section-title span {
        font-size: 11px;
        letter-spacing: 1.8px;
    }

    .service-card {
        min-height: 390px;
        border-radius: 20px;
    }

    .service-card-content h3 {
        font-size: 30px;
    }

    .why-image-main img {
        height: 410px;
    }

    .why-badge {
        width: 120px;
        min-height: 120px;
        padding: 16px;
    }

    .why-badge strong {
        font-size: 34px;
    }

    .why-badge span {
        font-size: 11px;
    }

    .feature-item {
        padding: 18px;
    }

    .video-showcase {
        min-height: 520px;
    }

    .play-button {
        width: 66px;
        height: 66px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 26px;
    }

    .stat-item {
        padding: 12px 10px;
    }

    .stat-item:nth-child(2n)::after {
        display: none;
    }

    .stat-item:nth-child(3)::after {
        display: block;
    }

    .stat-item h3 {
        font-size: 42px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .gallery-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter {
        flex: 0 0 auto;
    }

    .gallery-grid {
        grid-auto-rows: 310px;
    }

    .package-card {
        padding: 32px 24px;
        border-radius: 22px;
    }

    .package-card h3 {
        font-size: 40px;
    }

    .package-price strong {
        font-size: 46px;
    }

    .press-visual {
        min-height: 430px;
    }

    .newspaper-card {
        border-width: 8px;
    }

    .newspaper-card:first-child {
        top: 5px;
        left: 0;
        width: 72%;
        height: 350px;
    }

    .newspaper-card:last-child {
        right: 0;
        bottom: 0;
        width: 66%;
        height: 310px;
    }

    .polaroid-wall {
        min-height: 500px;
    }

    .polaroid-photo {
        width: 175px;
        padding: 8px 8px 44px;
    }

    .polaroid-photo img {
        height: 205px;
    }

    .polaroid-photo span {
        bottom: 13px;
        font-size: 16px;
    }

    .polaroid-photo:nth-child(1) {
        top: 10px;
        left: 0;
    }

    .polaroid-photo:nth-child(2) {
        top: 70px;
        right: 0;
    }

    .polaroid-photo:nth-child(3) {
        bottom: 12px;
        left: 18%;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

    .final-cta {
        padding: 90px 0;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .contact-item {
        align-items: flex-start;
        padding: 17px;
    }

    .contact-form {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .footer {
        padding-top: 70px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-logo img {
        height: 58px;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

/*=================================================
  EXTRA SMALL DEVICES
=================================================*/

@media (max-width: 390px) {

    .logo img {
        height: 44px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-stats > div {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 8px;
    }

    .hero-stats h2 {
        margin: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none !important;
    }

    .gallery-grid {
        grid-auto-rows: 270px;
    }

    .press-visual {
        min-height: 365px;
    }

    .newspaper-card:first-child {
        height: 300px;
    }

    .newspaper-card:last-child {
        height: 260px;
    }

    .polaroid-wall {
        min-height: 430px;
    }

    .polaroid-photo {
        width: 150px;
    }

    .polaroid-photo img {
        height: 170px;
    }
}

/*=================================================
  LANDSCAPE PHONES
=================================================*/

@media (max-height: 520px) and (orientation: landscape) {

    .hero {
        min-height: 620px;
        padding-top: 100px;
    }

    .menu {
        padding-top: 85px;
    }

    .scroll-down {
        display: none;
    }
}

/*=================================================
  REDUCED MOTION
=================================================*/

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/*=================================================
  TOUCH DEVICES
=================================================*/

@media (hover: none) {

    .service-card:hover,
    .package-card:hover,
    .testimonial-card:hover,
    .feature-item:hover {
        transform: none;
    }

    .gallery-caption {
        opacity: 1;
        transform: none;
    }

    .gallery-item::before {
        opacity: 1;
    }

    .polaroid-photo:hover {
        transform: inherit;
    }
}


/* Meniu principal — font mai elegant */
.site-header nav a,
.main-nav a,
.nav-links a,
header nav a,
header .nav a,
.menu a,
.navbar a{
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:16px;
    font-weight:600;
    letter-spacing:.035em;
    text-transform:none;
    line-height:1;
}

.site-header nav a:hover,
.main-nav a:hover,
.nav-links a:hover,
header nav a:hover,
header .nav a:hover,
.menu a:hover,
.navbar a:hover{
    letter-spacing:.055em;
}

@media(max-width:900px){
    .site-header nav a,
    .main-nav a,
    .nav-links a,
    header nav a,
    header .nav a,
    .menu a,
    .navbar a{
        font-size:17px;
        letter-spacing:.025em;
    }
}
