/* styles.css */

        :root {
    --primary: #2a5c8d;
    --secondary: #f8a51b;
    --light: #f5f7fa;
    --dark: #1e2a3a;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
        }
        
       	header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
    height: auto; /* Change from 70px to auto */
    min-height: 70px; /* Add min-height instead */
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0; /* Add some vertical padding */
}

.logo-img {
    height: 70px; /* Reduce logo height to allow for padding */
    width: auto;
    display: block;
}
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px;
        }     
        
        
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        .nav-links li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        /* Dropdown menu styles */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 5px;
            overflow: hidden;
            z-index: 1000;
        }
        
        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--dark);
            text-decoration: none;
            transition: background-color 0.3s;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .dropdown-content a:last-child {
            border-bottom: none;
        }
        
        .dropdown-content a:hover {
            background-color: var(--light);
            color: var(--primary);
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .language-switcher {
            display: flex;
            margin-left: 20px;
        }
        
        .language-switcher button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            margin: 0 5px;
            font-weight: 600;
            color: var(--dark);
            transition: color 0.3s;
        }
        
        .language-switcher button.active {
            color: var(--primary);
            text-decoration: underline;
        }
        
        .language-switcher button:hover {
            color: var(--primary);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #1d4b7a;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: #e69516;
        }

/* Tour Hero Section */
.tour-hero {
    position: relative;
    padding-top: 80px;
    margin-bottom: 40px;
    background-color: var(white);
    
}

.tour-hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.tour-hero-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.tour-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tour-hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #f8a51b;
    line-height: 1.2;
}

.tour-hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--dark);
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tour-price-box {
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-block;
    margin-top: 10px;
}

.tour-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Tour Details Section */
.tour-details {
    padding: 60px 0;
}

.tour-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.tour-description {
    margin-bottom: -100px;
}

.tour-description h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 28px;
}

.tour-highlights {
    margin: 30px 0;
}

.tour-highlights h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.highlight-list i {
    color: var(--secondary);
    margin-right: 10px;
    margin-top: 4px;
}

/* Itinerary */
.itinerary {
    margin: 40px 0;
}

.itinerary h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 22px;
}

.itinerary-item {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--secondary);
}

.itinerary-time {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.itinerary-content {
    color: #555;
}

/* Included Section */
.included-section {
    padding: 60px 0;
}

.included-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.included-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.included-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.included-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.not-included {
    opacity: 0.7;
}

.not-included .included-icon {
    color: #ccc;
}

/* CTA Section */
.tour-cta {
    text-align: center;
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
}

.tour-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.tour-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 300px;
}

/* Footer */
footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 14px;
        }

/* Mobile menu styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

.tour-details {
    padding: 80px 0;
    background-color: var(--light);
}

.tour-tabs {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tab-headers {
    display: flex;
    background-color: var(--light);
    border-bottom: 2px solid var(--primary);
}

.tab-header {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-header.active {
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
    background-color: white;
}

.tab-header:hover {
    color: var(--primary);
}

.tab-contents {
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.price-info {
    margin: 20px 0;
    padding: 20px;
    background-color: var(--light);
    border-radius: 8px;
}

.regular-price, .discount-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.price-amount {
    font-weight: 700;
    color: var(--secondary);
    font-size: 20px;
}

.discount-note {
    width: 100;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.included-section, .excluded-section {
    margin: 20px 0;
}

.included-section h4, .excluded-section h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.tour-tabs ul {
    padding-left: 20px;
    margin: 10px 0;
}

.tour-tabs li {
    margin-bottom: 8px;
}

.payment-options {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--light);
    border-radius: 8px;
}



@media (max-width: 992px) {
    .tour-content {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        order: -1;
        margin-bottom: 40px;
    }
}
 @media (min-width: 769px) {
           
            .tour-hero-content {
                max-width: 800px;
                padding: 0 20px;
            }
            
            .tour-hero h1 {
                font-size: 48px;
                margin-bottom: 20px;
            }
            
            .tour-hero p {
                font-size: 20px;
                margin-bottom: 30px;
            }
            
            .tour-price {
                font-size: 28px;
                margin: 20px 0;
            }
            
            .tour-hero-image img {
                max-width: 90%;
                max-height: 90%;
            }
        }
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .language-switcher {
        margin: 15px 0 0 0;
        justify-content: center;
    }
    
    .tour-hero h1 {
        font-size: 36px;
    }
    
    #milano.tour-hero{
        height: 400px;
    }
	
	#beci.tour-hero{
        height: 450px;
    }
	
	#ita.tour-hero{
        height: 450px;
    }

    .tour-hero p {
        font-size: 18px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-headers {
        flex-direction: column;
    }
    
    .tab-header {
        text-align: center;
        padding: 12px;
    }
    
    .tab-contents {
        padding: 20px;
    }
    
    .regular-price, .discount-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-amount {
        margin-top: 5px;
    }
    
    /* Mobile adjustments for hero image */
    .tour-hero-image {
        max-width: 95%;
        max-height: 80%;
    }
    .tour-hero-image img{
        height: 200px;
        margin-bottom: 200px;
        margin-left: 19px;
    }

    .tour-hero-content h1{
        margin-top: -150px;
        margin-left: 40px;
    
    }
    .tour-price-box{
        margin-left: -20px;
        width: 100%;
        box-shadow:none;
    }

     .tab-headers {
            flex-direction: column;
        }
        
        .tab-header {
            text-align: center;
            padding: 12px;
        }
        
        .tab-contents {
            padding: 20px;
        }
        
        .regular-price, .discount-price {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .price-amount {
            margin-top: 5px;
            
        }
        .footer-content{
            margin-left: 6px;
        }
	#milano .tour-description {
        margin-top: 60px;
    }
	#milano .tour-hero-image{
		margin-top:60px;
    }
	#organizator {
            width: 100%;
            margin-left: 5px;
        }
	 #ital  h1{
        margin-left: 00px;
		 padding-top: 30px;
		 
		
    }
    #itali {
        margin-top: 90px;
    }
	#gr.tour-hero{
        height: 800px;
    }

    #gr .tour-hero-image{
        margin-top: -90px;
    }
    #grc.tour-hero-content{
        margin-top: -200px;
    }
    #grc h1{
        margin-left: 00px;
    }
	
}

/* FullHD zona (širi browser, ali ispod 1920) */
@media (min-width: 1200px) and (max-width: 1920px) {
    #bec.tour-hero {
        height: 850px !important;
    }
	#milano.tour-hero {
        height: 1000px !important;
    }
	
	
    .tour-hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
	#milano .tour-hero{
    padding-top: 0%;
  
   }
	#organizator{
    width: 714px; margin-left: 601px;
}
#milano .tour-hero-image{
    height: 600px; width: 1000px;
    margin-left: 450px;
    padding-top: 0px;
    
}
	#ita.tour-hero{
        height: 940px;
    }
	#itali{
    height: 500px;
    width: 1000px;
}
	#gr.tour-hero{
    height: 1250px;
}
	
	
}

/* 1920px+ – sve što je baš široko (FHD fullscreen, 2K fullscreen, ultrawide) */
@media (min-width: 1921px) {
    #milano.tour-hero {
        height: 1000px !important;
    }
    .tour-hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
	#milano .tour-hero-image{
    height: 700px; width: 1000px;
    margin-left: 450px;
    padding-top: 0px;
	margin-left: 770px;		

    margin-top: -110px;
    
}
	#organizator{
    width: 714px; margin-left: 930px;
}

    #milano .tour-hero-content{
        margin-top: -50px;
    }
	#ita.tour-hero{
        height: 1150px;
    }
	#itali{
    height: 700px;
    width: 1200px;
}
	#gr.tour-hero{
    height: 1440px;
}
}
/* @media (max-width: 480px) {
            .tour-hero {
                 Even smaller for very small screens 
             Less padding for mobile 
            
            
            .tour-hero h1 {
                font-size: 24px;
                margin-bottom: 10px;
            }
            
            .tour-hero p {
                font-size: 14px;
                margin-bottom: 15px;
            }
            
            .tour-price {
                font-size: 18px;
                margin: 10px 0;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .tour-hero-image img {
                max-width: 98%;
                max-height: 90%;
                margin-top: 100px;
                margin-left: 20px;
            }
        }
    
*/

