/*
Theme Name: Pjena Party Custom
Theme URI: https://pjenaparty.com
Author: Tino / Event Team
Author URI: https://pjenaparty.com
Description: Custom WordPress tema za Pjena Party - ARTIS Special Event Team. ACF podrška za jednostavno uređivanje.
Version: 1.0.1
License: GPL v2
Text Domain: pjenaparty
*/

/* ============================================
   PJENA PARTY CUSTOM THEME
   Custom WordPress Theme + ACF
   ============================================ */

:root {
    --ocean: #0066CC;
    --ocean-dark: #004499;
    --ocean-light: #0099FF;
    --foam: #FFFFFF;
    --coral: #FF6B35;
    --coral-light: #FF8C5A;
    --deep-blue: #0A1929;
    --deep-blue-light: #1A2F4A;
    --deep-blue-lighter: #2A4566;
    --white: #FFFFFF;
    --white-muted: rgba(255, 255, 255, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--deep-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

/* WordPress Admin Bar fix */
body.admin-bar {
    padding-top: 32px;
}
  /* ============================================                                                                                                           
     BUBBLES ANIMATION                                                                                                                                      
     ============================================ */                                                                                                        
                                                                                                                                                            
  .bubbles {                                                                                                                                                
      position: fixed;                                                                                                                                      
      top: 0;                                                                                                                                               
      left: 0;                                                                                                                                              
      width: 100%;                                                                                                                                          
      height: 100%;                                                                                                                                         
      pointer-events: none;                                                                                                                                 
      z-index: 1;                                                                                                                                           
      overflow: hidden;                                                                                                                                     
  }                                                                                                                                                         
                                                                                                                                                            
  .bubble {                                                                                                                                                 
      position: absolute;                                                                                                                                   
      bottom: -100px;                                                                                                                                       
      width: 40px;                                                                                                                                          
      height: 40px;                                                                                                                                         
      background: rgba(255, 255, 255, 0.1);                                                                                                                 
      border-radius: 50%;                                                                                                                                   
      animation: rise 10s infinite ease-in;                                                                                                                 
  }                                                                                                                                                         
                                                                                                                                                            
  .bubble:nth-child(1) { left: 10%; width: 80px; height: 80px; animation-duration: 8s; animation-delay: 0s; }                                               
  .bubble:nth-child(2) { left: 20%; width: 40px; height: 40px; animation-duration: 12s; animation-delay: 2s; }                                              
  .bubble:nth-child(3) { left: 35%; width: 60px; height: 60px; animation-duration: 10s; animation-delay: 4s; }                                              
  .bubble:nth-child(4) { left: 50%; width: 30px; height: 30px; animation-duration: 14s; animation-delay: 1s; }                                              
  .bubble:nth-child(5) { left: 65%; width: 50px; height: 50px; animation-duration: 11s; animation-delay: 3s; }                                              
  .bubble:nth-child(6) { left: 80%; width: 35px; height: 35px; animation-duration: 13s; animation-delay: 5s; }                                              
  .bubble:nth-child(7) { left: 90%; width: 45px; height: 45px; animation-duration: 9s; animation-delay: 2s; }                                               
                                                                                                                                                            
  @keyframes rise {                                                                                                                                         
      0% { bottom: -100px; transform: translateX(0) scale(1); opacity: 0; }                                                                                 
      10% { opacity: 0.3; }                                                                                                                                 
      50% { transform: translateX(20px) scale(1.1); }                                                                                                       
      90% { opacity: 0.3; }                                                                                                                                 
      100% { bottom: 100vh; transform: translateX(-20px) scale(0.8); opacity: 0; }                                                                          
  }  
/* ============================================
   NAVIGATION
   ============================================ */

 nav {                                                                                                                                                     
      position: fixed;                                                                                                                                      
      top: 0;                                                                                                                                               
      width: 100%;                                                                                                                                          
      padding: 1rem 5%;                                                                                                                                   
      display: flex;                                                                                                                                        
      justify-content: space-between;                                                                                                                       
      align-items: center;                                                                                                                                  
      z-index: 1000;                                                                                                                                        
      background: transparent;  /* bilo: gradient */                                                                                                        
      transition: all 0.3s ease;                                                                                                                            
  }                                             

nav.scrolled {                                                                                                                                            
      background: rgba(10, 25, 41, 0.95);                                                                                                                   
      backdrop-filter: blur(20px);                                                                                                                          
      padding: 1rem 2rem;                                                                                                                                   
      max-width: 900px;                                                                                                                                     
      left: 50%;                                                                                                                                            
      transform: translateX(-50%);                                                                                                                          
      border-radius: 0 0 15px 15px;                                                                                                                         
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);                                                                                                               
  }      

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 153, 255, 0.5);
}

.main-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--coral);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-menu a:hover {
    color: var(--coral);
}

.main-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--ocean-dark) 50%, var(--deep-blue-light) 100%);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 153, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(10, 25, 41, 0.7) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid var(--coral);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 0 40px rgba(0, 153, 255, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 span {
    color: var(--coral);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--white-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--coral);
    color: var(--coral);
    background: rgba(255, 107, 53, 0.1);
}

.hero-phone {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeIn 1s ease 0.8s both;
}

.hero-phone a {
    color: var(--coral);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--coral);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 6rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--white);
}

.section-header h2 span {
    color: var(--coral);
}

.section-header p {
    color: var(--white-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--deep-blue-light);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--coral);
}

.about-content p {
    color: var(--white-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.certificates {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(0, 153, 255, 0.15);
    border: 1px solid var(--ocean-light);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--white);
}

.cert-badge span {
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
    transition: transform 0.4s ease;
}

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

/* Wave Divider */
.wave-divider {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: var(--deep-blue);
}

/* ============================================
   SERVICES / PRICING
   ============================================ */

.services {
    background: var(--deep-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 47, 74, 0.9), rgba(10, 25, 41, 0.95));
    border: 2px solid rgba(0, 153, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean), var(--ocean-light), var(--coral));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--ocean-light);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.service-duration {
    color: var(--coral);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.service-price span {
    font-size: 1.5rem;
    color: var(--white-muted);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '🌊';
}

.service-features li:last-child {
    border-bottom: none;
}

.service-card.featured {
    border-color: var(--coral);
    transform: scale(1.05);
}

.service-card.featured::after {
    content: 'NAJPOPULARNIJE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
    background: var(--deep-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 25, 41, 0.9), transparent);
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.2rem;
}

/* ============================================
   SAFETY
   ============================================ */

.safety {
    background: linear-gradient(135deg, var(--deep-blue-light), var(--deep-blue));
    position: relative;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.safety-card {
    background: rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.safety-card:hover {
    background: rgba(0, 102, 204, 0.2);
    transform: translateY(-5px);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.safety-card h3 {
    color: var(--coral);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.safety-card p {
    color: var(--white-muted);
    font-size: 0.95rem;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    background: linear-gradient(135deg, var(--ocean-dark), var(--deep-blue));
    position: relative;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.contact > p {
    color: var(--white-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 153, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--coral);
    transform: translateY(-5px);
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.contact-method h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-method a {
    color: var(--coral);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
}

.notice-box {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--coral);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.notice-box h3 {
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.notice-box p {
    color: var(--white);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 153, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 153, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.form-message.success {
    background: rgba(0, 200, 100, 0.2);
    border: 1px solid #00C864;
    color: #00C864;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #FF4444;
    color: #FF4444;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--deep-blue);
    border-top: 2px solid rgba(0, 153, 255, 0.2);
    padding: 3rem 5%;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 153, 255, 0.5);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--coral);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--ocean-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-light);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

.footer-copyright {
    color: var(--white-muted);
    font-size: 0.9rem;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--coral);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

  @media (max-width: 768px) {                                                                                                                               
      .main-menu {                                                                                                                                          
          display: none;                                                                                                                                    
      }                                                                                                                                                     
                                                                                                                                                            
      .mobile-menu-toggle {                                                                                                                                 
          display: flex;                                                                                                                                    
      }                                                                                                                                                     
                                                                                                                                                            
      .about-grid {                                                                                                                                         
          grid-template-columns: 1fr;                                                                                                                       
      }                                                                                                                                                     
                                                                                                                                                            
      .gallery-grid {                                                                                                                                       
          grid-template-columns: repeat(2, 1fr);                                                                                                            
          grid-auto-rows: 200px;                                                                                                                            
      }                                                                                                                                                     
                                                                                                                                                            
      .gallery-item.large {                                                                                                                                 
          grid-column: span 2;                                                                                                                              
          grid-row: span 1;                                                                                                                                 
      }                                                                                                                                                     
                                                                                                                                                            
      .service-card.featured {                                                                                                                              
          transform: none;                                                                                                                                  
      }                                                                                                                                                     
                                                                                                                                                            
      .service-card.featured:hover {                                                                                                                        
          transform: translateY(-10px);                                                                                                                     
      }                                                                                                                                                     
                                                                                                                                                            
      .hero-cta {                                                                                                                                           
          flex-direction: column;                                                                                                                           
          align-items: center;                                                                                                                              
      }                                                                                                                                                     
                                                                                                                                                            
      .btn-primary, .btn-secondary {                                                                                                                        
          width: 100%;                                                                                                                                      
          max-width: 300px;                                                                                                                                 
          justify-content: center;                                                                                                                          
      }                                                                                                                                                     
                                                                                                                                                            
      .contact-form {                                                                                                                                       
          padding: 2rem 1.5rem;                                                                                                                             
      }
            /* FIX: Telefon u jednom redu na mobitelu */                                                                                                          
      .hero-phone a {                                                                                                                                       
          font-size: 1.2rem;                                                                                                                                
          white-space: nowrap;                                                                                                                              
      } 
  } 

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */

/* Admin bar adjustment */
body.admin-bar .hero {
    min-height: calc(100vh - 32px);
}

/* WordPress alignments */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin: 0 1rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1rem;
}

/* Screen reader text */
.screen-reader-text {
    position: absolute;
    left: -9999px;
}