/* Holidays Banner - Dedicated CSS File */
/* This file is completely separate from main styles to avoid conflicts */

/* Base Holidays Banner Styling */
#special-offer-section.special-offer-section {
	/* Background Image */
	background-image: url('../images/holidays/holidaysbanner.jpeg') !important;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	
	/* Dimensions */
	height: 220px !important;
	min-height: 220px !important;
	max-height: 220px !important;
	
	/* Layout */
	position: relative !important;
	width: 100% !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	
	/* Ensure it's visible */
	display: block !important;
	visibility: visible !important;
}

/* Content Positioning */
#special-offer-section.special-offer-section .container {
    position: relative !important;
    z-index: 2 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

#special-offer-section.special-offer-section .row {
    width: 100% !important;
    margin: 0 !important;
    align-items: center !important;
}

/* Text Styling */
#special-offer-section.special-offer-section .special-offer-content h2 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    margin: 0 !important;
    padding: 0 !important;
}

#special-offer-section.special-offer-section .special-offer-content p {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Button Styling */
#special-offer-section.special-offer-section .book-holidays-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #FFA500 100%) !important;
    color: #000000 !important;
    padding: 6px 15px !important;
    border-radius: 3px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    margin: 0 3px !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
    border: none !important;
    font-weight: 700 !important;
}

#special-offer-section.special-offer-section .book-holidays-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4) !important;
}

/* Responsive Breakpoints */

/* Mobile Devices */
@media (max-width: 576px) {
    #special-offer-section.special-offer-section {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content h2 {
        font-size: 18px !important;
        line-height: 1.2 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content p {
        font-size: 14px !important;
    }
    
    #special-offer-section.special-offer-section .book-holidays-btn {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
}

/* Small Tablets */
@media (min-width: 577px) and (max-width: 768px) {
    #special-offer-section.special-offer-section {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
        padding: 30px 0 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content p {
        font-size: 16px !important;
    }
    
    #special-offer-section.special-offer-section .book-holidays-btn {
        font-size: 14px !important;
        padding: 10px 15px !important;
    }
}

/* Medium Tablets */
@media (min-width: 769px) and (max-width: 992px) {
    #special-offer-section.special-offer-section {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        padding: 35px 0 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content p {
        font-size: 18px !important;
    }
    
    #special-offer-section.special-offer-section .book-holidays-btn {
        font-size: 16px !important;
        padding: 12px 18px !important;
    }
}

/* Small Laptops */
@media (min-width: 993px) and (max-width: 1200px) {
    #special-offer-section.special-offer-section {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        padding: 40px 0 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content p {
        font-size: 20px !important;
    }
    
    #special-offer-section.special-offer-section .book-holidays-btn {
        font-size: 18px !important;
        padding: 14px 20px !important;
    }
}

/* 13-inch Laptops (1366px) */
@media (min-width: 1201px) and (max-width: 1366px) {
    #special-offer-section.special-offer-section {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        padding: 40px 0 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content h2 {
        font-size: 26px !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content p {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
    
    #special-offer-section.special-offer-section .book-holidays-btn {
        font-size: 16px !important;
        padding: 12px 18px !important;
        margin-top: 10px !important;
    }
}

/* 14-inch Laptops (1440px) */
@media (min-width: 1367px) and (max-width: 1440px) {
    #special-offer-section.special-offer-section {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        padding: 45px 0 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content p {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
    
    #special-offer-section.special-offer-section .book-holidays-btn {
        font-size: 18px !important;
        padding: 14px 20px !important;
        margin-top: 12px !important;
    }
}

/* 15-inch Laptops (1600px) */
@media (min-width: 1441px) and (max-width: 1600px) {
    #special-offer-section.special-offer-section {
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
        padding: 50px 0 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content h2 {
        font-size: 30px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content p {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    
    #special-offer-section.special-offer-section .book-holidays-btn {
        font-size: 20px !important;
        padding: 16px 22px !important;
        margin-top: 15px !important;
    }
}



/* 16-inch Monitors and Medium Desktops */
@media (min-width: 1601px) and (max-width: 1920px) {
	#special-offer-section.special-offer-section {
		height: 280px !important;
		min-height: 280px !important;
		max-height: 280px !important;
	}
	
	#special-offer-section.special-offer-section .special-offer-content h2 {
		font-size: 30px !important;
		line-height: 1.3 !important;
	}
	
	#special-offer-section.special-offer-section .special-offer-content p {
		font-size: 22px !important;
	}
	
	#special-offer-section.special-offer-section .book-holidays-btn {
		font-size: 20px !important;
		padding: 16px 22px !important;
	}
}

/* 4K and Ultra-wide Screens */
@media (min-width: 1921px) {
    #special-offer-section.special-offer-section {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content h2 {
        font-size: 36px !important;
        line-height: 1.3 !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content p {
        font-size: 26px !important;
    }
    
    #special-offer-section.special-offer-section .book-holidays-btn {
        font-size: 24px !important;
        padding: 20px 28px !important;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    #special-offer-section.special-offer-section {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content h2 {
        font-size: 20px !important;
    }
    
    #special-offer-section.special-offer-section .special-offer-content p {
        font-size: 16px !important;
    }
    
    #special-offer-section.special-offer-section .book-holidays-btn {
        font-size: 14px !important;
        padding: 8px 14px !important;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    #special-offer-section.special-offer-section {
        background-image: url('../images/holidays/holidaysbanner.jpeg') !important;
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
    }
}

/* Print Styles */
@media print {
    #special-offer-section.special-offer-section {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        background-image: none !important;
        border: 1px solid #000 !important;
    }
}

/* Accessibility */
#special-offer-section.special-offer-section:focus-within {
    outline: 2px solid #D4AF37 !important;
    outline-offset: 2px !important;
}

/* Animation for smooth transitions */
#special-offer-section.special-offer-section,
#special-offer-section.special-offer-section .book-holidays-btn {
    transition: all 0.3s ease !important;
}

/* Force override any existing styles */
#special-offer-section.special-offer-section * {
    box-sizing: border-box !important;
}

/* Ensure no conflicts with existing CSS */
#special-offer-section.special-offer-section {
    /* Reset any inherited styles */
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    
    /* Override any existing positioning */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    
    /* Override any existing transforms */
    transform: none !important;
    
    /* Override any existing animations */
    animation: none !important;
} 

/* Override inline styles from HTML */
#special-offer-section.special-offer-section[style*="padding: 50px 0"] {
    padding: 0 !important;
}

/* Force height override for all screen sizes */
#special-offer-section.special-offer-section {
    padding: 0 !important;
}

/* Ensure content is properly centered */
#special-offer-section.special-offer-section .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* NUCLEAR OVERRIDE - Force all styles to work */
html body #special-offer-section.special-offer-section,
html body section#special-offer-section,
html body .special-offer-section {
    /* Override main CSS file */
    padding: 0 !important;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    background-image: url('../images/holidays/holidaysbanner.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Force container positioning */
html body #special-offer-section.special-offer-section .container,
html body section#special-offer-section .container,
html body .special-offer-section .container {
    position: relative !important;
    z-index: 10 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Force row positioning */
html body #special-offer-section.special-offer-section .row,
html body section#special-offer-section .row,
html body .special-offer-section .row {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    display: flex !important;
    box-sizing: border-box !important;
}

/* Force content positioning */
html body #special-offer-section.special-offer-section .special-offer-content h2,
html body section#special-offer-section .special-offer-content h2,
html body .special-offer-section .special-offer-content h2,
html body #special-offer-section.special-offer-section .special-offer-content p,
html body section#special-offer-section .special-offer-content p,
html body .special-offer-section .special-offer-content p {
    position: relative !important;
    z-index: 15 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-weight: bold !important;
}

/* Force button positioning */
html body #special-offer-section.special-offer-section .book-holidays-btn,
html body section#special-offer-section .book-holidays-btn,
html body .special-offer-section .book-holidays-btn,
html body #special-offer-section.special-offer-section .event-makeing-btn a,
html body section#special-offer-section .event-makeing-btn a,
html body .special-offer-section .event-makeing-btn a {
    position: relative !important;
    z-index: 15 !important;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #FFA500 100%) !important;
    color: #000000 !important;
    padding: 12px 20px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
    border: none !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: none !important;
    line-height: 1.2 !important;
}

/* Responsive overrides for 13-inch and 14-inch screens */
@media (min-width: 1201px) and (max-width: 1366px) {
    html body #special-offer-section.special-offer-section,
    html body section#special-offer-section,
    html body .special-offer-section {
        height: 450px !important;
        min-height: 450px !important;
        max-height: 450px !important;
        padding: 50px 0 !important;
    }
    
    html body #special-offer-section.special-offer-section .special-offer-content h2,
    html body section#special-offer-section .special-offer-content h2,
    html body .special-offer-section .special-offer-content h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }
    
    html body #special-offer-section.special-offer-section .special-offer-content p,
    html body section#special-offer-section .special-offer-content p,
    html body .special-offer-section .special-offer-content p {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
    
    html body #special-offer-section.special-offer-section .book-holidays-btn,
    html body section#special-offer-section .book-holidays-btn,
    html body .special-offer-section .book-holidays-btn {
        font-size: 18px !important;
        padding: 12px 20px !important;
    }
}

@media (min-width: 1367px) and (max-width: 1440px) {
    html body #special-offer-section.special-offer-section,
    html body section#special-offer-section,
    html body .special-offer-section {
        height: 500px !important;
        min-height: 500px !important;
        max-height: 500px !important;
        padding: 60px 0 !important;
    }
    
    html body #special-offer-section.special-offer-section .special-offer-content h2,
    html body section#special-offer-section .special-offer-content h2,
    html body .special-offer-section .special-offer-content h2 {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 18px !important;
    }
    
    html body #special-offer-section.special-offer-section .special-offer-content p,
    html body section#special-offer-section .special-offer-content p,
    html body .special-offer-section .special-offer-content p {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    
    html body #special-offer-section.special-offer-section .book-holidays-btn,
    html body section#special-offer-section .book-holidays-btn,
    html body .special-offer-section .book-holidays-btn {
        font-size: 20px !important;
        padding: 14px 22px !important;
    }
}

@media (min-width: 1441px) and (max-width: 1600px) {
    html body #special-offer-section.special-offer-section,
    html body section#special-offer-section,
    html body .special-offer-section {
        height: 550px !important;
        min-height: 550px !important;
        max-height: 550px !important;
        padding: 70px 0 !important;
    }
    
    html body #special-offer-section.special-offer-section .special-offer-content h2,
    html body section#special-offer-section .special-offer-content h2,
    html body .special-offer-section .special-offer-content h2 {
        font-size: 40px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
    
    html body #special-offer-section.special-offer-section .special-offer-content p,
    html body section#special-offer-section .special-offer-content p,
    html body .special-offer-section .special-offer-content p {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    html body #special-offer-section.special-offer-section .book-holidays-btn,
    html body section#special-offer-section .book-holidays-btn,
    html body .special-offer-section .book-holidays-btn {
        font-size: 22px !important;
        padding: 16px 24px !important;
    }
}

/* EXTRA AGGRESSIVE OVERRIDE - Target every possible selector */
#special-offer-section,
.special-offer-section,
section#special-offer-section,
section.special-offer-section,
div#special-offer-section,
div.special-offer-section {
    height: 450px !important;
    min-height: 450px !important;
    max-height: 450px !important;
    padding: 0 !important;
    background-image: url('../images/holidays/holidaysbanner.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

/* Force override any inline styles */
#special-offer-section[style],
.special-offer-section[style],
section#special-offer-section[style],
section.special-offer-section[style] {
    height: 450px !important;
    min-height: 450px !important;
    max-height: 450px !important;
    padding: 0 !important;
    background-image: url('../images/holidays/holidaysbanner.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 !important;
}