/* * Presum Travel Agency Design System * Colors: Navy Blue (#0a1426), Gold/Sand (#d4af37), Off-White (#fcfcfc) */ @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap'); .presum-theme * { box-sizing: border-box; margin: 0; padding: 0; } .presum-theme body { font-family: 'Montserrat', sans-serif; background-color: #fcfcfc; color: #333; overflow-x: hidden; } /* Typography */ .presum-theme h1, .presum-theme h2, .presum-theme h3, .presum-theme h4, .presum-theme h5 { font-family: 'Cinzel', serif; font-weight: 400; } .presum-theme .text-gold { color: #d4af37; } .presum-theme .bg-navy { background-color: #0a1426; color: #fff; } .presum-theme .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Buttons */ .presum-theme .btn-gold { background-color: #d4af37; color: #0a1426; border: none; padding: 12px 24px; font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 0.85rem; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: background-color 0.3s; } .presum-theme .btn-gold:hover { background-color: #c09e32; } .presum-theme .btn-transparent-gold { background-color: transparent; color: #d4af37; border: 1px solid #d4af37; padding: 10px 20px; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; cursor: pointer; text-transform: uppercase; transition: all 0.3s; } .presum-theme .btn-transparent-gold:hover { background-color: #d4af37; color: #0a1426; } /* HEADER */ .presum-theme header { position: absolute; top: 0; left: 0; width: 100%; z-index: 100; background: linear-gradient(to bottom, rgba(10,20,38,0.8) 0%, rgba(10,20,38,0) 100%); padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); } .presum-theme header .container { display: flex; justify-content: space-between; align-items: center; } .presum-theme .header-logo { display: flex; flex-direction: column; align-items: center; color: #d4af37; text-decoration: none; } .presum-theme .header-logo img { height: 30px; margin-bottom: 5px; } .presum-theme .header-logo h1 { font-size: 1.5rem; letter-spacing: 2px; margin: 0; } .presum-theme .header-logo span { font-family: 'Montserrat', sans-serif; font-size: 0.5rem; letter-spacing: 3px; text-transform: uppercase; } .presum-theme .header-nav { display: flex; gap: 30px; } .presum-theme .header-nav a { color: #fff; text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; } .presum-theme .header-nav a:hover, .presum-theme .header-nav a.active { color: #d4af37; border-bottom: 1px solid #d4af37; padding-bottom: 2px; } .presum-theme .header-right { display: flex; align-items: center; gap: 30px; } .presum-theme .header-contact { display: flex; align-items: center; gap: 10px; color: #fff; } .presum-theme .header-contact .icon { color: #d4af37; font-size: 1.2rem; } .presum-theme .header-contact .details { display: flex; flex-direction: column; } .presum-theme .header-contact .phone { font-size: 0.9rem; font-weight: 500; } .presum-theme .header-contact .label { font-size: 0.6rem; color: #aaa; } /* MOBILE MENU */ .presum-theme .mobile-menu-toggle { display: none; font-size: 1.5rem; color: #fff; cursor: pointer; } .presum-theme .mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(10,20,38,0.98); backdrop-filter: blur(10px); z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; } .presum-theme .mobile-menu-overlay.active { opacity: 1; pointer-events: auto; } .presum-theme .mobile-menu-close { position: absolute; top: 30px; right: 30px; font-size: 2rem; color: #fff; cursor: pointer; } .presum-theme .mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 30px; } .presum-theme .mobile-nav a { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 1.5rem; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s; } .presum-theme .mobile-nav a:hover, .presum-theme .mobile-nav a.active { color: #d4af37; } .presum-theme .mobile-contact { margin-top: 50px; } /* HERO SECTION */ .presum-theme .hero-section { position: relative; height: 90vh; min-height: 700px; background-size: cover; background-position: center; display: flex; align-items: center; } .presum-theme .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,20,38,0.4); } .presum-theme .hero-content { position: relative; z-index: 10; color: #fff; max-width: 600px; } .presum-theme .hero-subtitle { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #d4af37; margin-bottom: 15px; } .presum-theme .hero-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); } .presum-theme .hero-desc { font-size: 1rem; line-height: 1.6; margin-bottom: 30px; text-shadow: 1px 1px 5px rgba(0,0,0,0.5); } /* SEARCH BAR */ .presum-theme .search-bar-wrapper { position: absolute; bottom: -60px; left: 0; width: 100%; z-index: 20; } .presum-theme .search-bar { background: #0a1426; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); padding: 0; display: flex; flex-direction: column; } .presum-theme .search-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.1); } .presum-theme .search-tab { padding: 15px 30px; color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; display: flex; align-items: center; gap: 10px; } .presum-theme .search-tab.active { color: #d4af37; border-bottom: 2px solid #d4af37; } .presum-theme .search-tab i { color: #d4af37; } .presum-theme .search-fields { display: flex; padding: 20px 30px; gap: 20px; align-items: center; } .presum-theme .search-field { flex: 1; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 20px; } .presum-theme .search-field:last-child { border-right: none; padding-right: 0; } .presum-theme .search-field label { font-size: 0.6rem; text-transform: uppercase; color: #aaa; margin-bottom: 5px; } .presum-theme .search-field input, .presum-theme .search-field select { background: transparent; border: none; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; outline: none; } .presum-theme .search-field input::placeholder { color: #888; } .presum-theme .search-btn { flex: 0 0 auto; } /* SERVICES SECTION */ .presum-theme .services-section { padding: 150px 0 80px; text-align: center; background: #fdfbf7; } .presum-theme .section-subtitle { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 10px; } .presum-theme .section-title { font-size: 2.2rem; color: #222; margin-bottom: 20px; } .presum-theme .section-desc { font-size: 0.95rem; color: #666; max-width: 600px; margin: 0 auto 60px; line-height: 1.6; } .presum-theme .services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; } .presum-theme .service-item { padding: 20px; border-right: 1px solid #eaeaea; } .presum-theme .service-item:last-child { border-right: none; } .presum-theme .service-icon { font-size: 2.5rem; color: #d4af37; margin-bottom: 20px; } .presum-theme .service-item h4 { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; text-transform: uppercase; color: #333; margin-bottom: 10px; font-weight: 600; } .presum-theme .service-item p { font-size: 0.75rem; color: #777; line-height: 1.5; } /* DESTINATIONS SECTION */ .presum-theme .destinations-section { padding: 80px 0; background-color: #0a1426; color: #fff; } .presum-theme .dest-header { display: flex; justify-content: center; align-items: center; position: relative; margin-bottom: 50px; } .presum-theme .dest-header h2 { font-size: 2rem; text-align: center; } .presum-theme .dest-header .view-all { position: absolute; right: 0; color: #aaa; text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; } .presum-theme .dest-header .view-all:hover { color: #d4af37; } .presum-theme .destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; } .presum-theme .dest-card { position: relative; border-radius: 4px; overflow: hidden; height: 400px; border: 1px solid rgba(255,255,255,0.1); } .presum-theme .dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; } .presum-theme .dest-card:hover img { transform: scale(1.05); } .presum-theme .dest-card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px 20px; background: linear-gradient(to top, rgba(10,20,38,0.9), transparent); } .presum-theme .dest-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; } .presum-theme .dest-card p { font-size: 0.75rem; color: #ccc; margin-bottom: 15px; } .presum-theme .dest-btn { width: 30px; height: 30px; border-radius: 50%; background: #d4af37; color: #0a1426; display: flex; justify-content: center; align-items: center; text-decoration: none; position: absolute; bottom: 30px; right: 20px; } /* CTA SECTION */ .presum-theme .cta-section { position: relative; padding: 100px 0; text-align: center; color: #fff; background-size: cover; background-position: center; } .presum-theme .cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,20,38,0.85); } .presum-theme .cta-content { position: relative; z-index: 10; } .presum-theme .cta-content h2 { font-size: 2.5rem; margin-bottom: 15px; } .presum-theme .cta-content p { font-size: 1rem; color: #ccc; margin-bottom: 30px; } /* NEWSLETTER */ .presum-theme .newsletter-section { background-color: #060b14; padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.05); } .presum-theme .newsletter-wrapper { display: flex; justify-content: space-between; align-items: center; } .presum-theme .newsletter-info { display: flex; align-items: center; gap: 20px; color: #fff; } .presum-theme .newsletter-icon { font-size: 2.5rem; color: #d4af37; } .presum-theme .newsletter-info h4 { font-family: 'Montserrat', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; } .presum-theme .newsletter-info p { font-size: 0.8rem; color: #888; } .presum-theme .newsletter-form { display: flex; width: 400px; } .presum-theme .newsletter-form input { flex: 1; padding: 12px 20px; background: transparent; border: 1px solid rgba(255,255,255,0.1); color: #fff; font-family: 'Montserrat', sans-serif; outline: none; } .presum-theme .newsletter-form button { border-radius: 0; } /* FOOTER MAIN */ .presum-theme .footer-main { background-color: #060b14; padding: 60px 0 40px; color: #aaa; } .presum-theme .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 30px; } .presum-theme .footer-logo img { height: 40px; margin-bottom: 20px; } .presum-theme .footer-col h5 { color: #d4af37; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; } .presum-theme .footer-col ul { list-style: none; } .presum-theme .footer-col ul li { margin-bottom: 12px; } .presum-theme .footer-col ul li a { color: #aaa; text-decoration: none; font-size: 0.85rem; transition: color 0.3s; } .presum-theme .footer-col ul li a:hover { color: #d4af37; } .presum-theme .footer-contact li { display: flex; gap: 15px; font-size: 0.85rem; align-items: flex-start; } .presum-theme .footer-contact i { color: #d4af37; margin-top: 4px; } /* FOOTER BOTTOM */ .presum-theme .footer-bottom { background-color: #03060a; padding: 20px 0; color: #666; font-size: 0.75rem; } .presum-theme .footer-bottom .container { display: flex; justify-content: space-between; align-items: center; } .presum-theme .footer-bottom-links a { color: #666; text-decoration: none; margin-left: 20px; } .presum-theme .footer-bottom-links a:hover { color: #d4af37; } /* PREMIUM GRID SYSTEM FOR INNER PAGES */ .premium-dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; margin-top: 50px; padding-bottom: 50px; } .premium-dest-card { position: relative; border-radius: 4px; overflow: hidden; height: 450px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease; display: block; text-decoration: none; background: #000; } .premium-dest-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.2); } .premium-dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s; opacity: 0.85; } .premium-dest-card:hover img { transform: scale(1.08); opacity: 1; } .premium-dest-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 70%; background: linear-gradient(to top, rgba(10,20,38,0.95) 0%, rgba(10,20,38,0.7) 40%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; box-sizing: border-box; } .premium-dest-title { font-family: 'Cinzel', serif; color: #fff; font-size: 2.2rem; margin: 0 0 10px 0; line-height: 1.1; text-shadow: 0 2px 10px rgba(0,0,0,0.5); } .premium-dest-subtitle { font-family: 'Montserrat', sans-serif; color: #d4af37; font-size: 0.75rem; letter-spacing: 3px; font-weight: 600; text-transform: uppercase; margin: 0 0 15px 0; } .premium-dest-desc { color: #e0e0e0; font-family: 'Inter', sans-serif; font-size: 0.95rem; line-height: 1.6; margin: 0 0 25px 0; opacity: 0.9; } .premium-dest-btn { display: inline-flex; align-items: center; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; } .premium-dest-card:hover .premium-dest-btn { color: #d4af37; } .premium-dest-btn i { margin-left: 10px; transition: transform 0.3s; } .premium-dest-card:hover .premium-dest-btn i { transform: translateX(5px); } @media (max-width: 768px) { .premium-dest-grid { grid-template-columns: 1fr; } .premium-dest-card { height: 350px; } .premium-dest-title { font-size: 1.8rem; } } /* Z-PATTERN LAYOUT (EXPERIENCES) */ .premium-z-pattern { display: flex; flex-direction: column; gap: 80px; margin-top: 50px; padding-bottom: 50px; } .z-row { display: flex; align-items: center; gap: 50px; background: #fff; border: 1px solid #eaeaea; border-radius: 4px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); } .z-row:nth-child(even) { flex-direction: row-reverse; } .z-image { flex: 1; min-width: 300px; height: 450px; position: relative; overflow: hidden; } .z-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .z-row:hover .z-image img { transform: scale(1.05); } .z-content { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; } .z-subtitle { font-family: 'Montserrat', sans-serif; color: #d4af37; font-size: 0.8rem; letter-spacing: 3px; font-weight: 600; text-transform: uppercase; margin-bottom: 15px; } .z-title { font-family: 'Cinzel', serif; color: #0a1426; font-size: 2.2rem; margin-bottom: 20px; line-height: 1.2; } .z-desc { color: #555; font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.7; margin-bottom: 30px; } .z-btn { display: inline-block; padding: 12px 25px; background: #0a1426; color: #d4af37; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; border-radius: 2px; transition: background 0.3s; align-self: flex-start; } .z-btn:hover { background: #11213f; } /* PILLAR LAYOUT (SERVICES) */ .premium-pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; padding-bottom: 50px; } .pillar-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #eaeaea; border-radius: 4px; overflow: hidden; height: 500px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: transform 0.4s ease, box-shadow 0.4s ease; text-decoration: none; } .pillar-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); } .pillar-img-wrap { height: 45%; overflow: hidden; } .pillar-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .pillar-card:hover .pillar-img-wrap img { transform: scale(1.05); } .pillar-content { height: 55%; padding: 30px; display: flex; flex-direction: column; text-align: center; } .pillar-subtitle { font-family: 'Montserrat', sans-serif; color: #d4af37; font-size: 0.75rem; letter-spacing: 2px; font-weight: 600; margin-bottom: 10px; } .pillar-title { font-family: 'Cinzel', serif; color: #0a1426; font-size: 1.5rem; margin-bottom: 15px; } .pillar-desc { color: #666; font-family: 'Inter', sans-serif; font-size: 0.9rem; line-height: 1.6; margin-bottom: auto; } .pillar-link { color: #0a1426; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; transition: color 0.3s; } .pillar-card:hover .pillar-link { color: #d4af37; } @media (max-width: 768px) { .z-row, .z-row:nth-child(even) { flex-direction: column; } .z-image { height: 300px; width: 100%; } } /* GLOBAL ANIMATIONS */ .anim-fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); } .anim-fade-in { opacity: 0; transition: opacity 1.2s ease; } .anim-active { opacity: 1; transform: translateY(0); } /* CAROUSEL */ .hero-carousel { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; } .carousel-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s ease-in-out, transform 8s linear; background-size: cover; background-position: center; transform: scale(1.05); } .carousel-slide.active { opacity: 1; transform: scale(1); } .hero-content { z-index: 10; } .hero-overlay { z-index: 5; } /* COMPREHENSIVE MOBILE RESPONSIVENESS */ @media (max-width: 991px) { .presum-theme .premium-dest-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .presum-theme .hero-title { font-size: 3.5rem; } .presum-theme .footer-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .presum-theme .premium-dest-grid { grid-template-columns: 1fr; } .presum-theme .premium-dest-card { height: 380px; } .presum-theme .premium-pillar-grid { grid-template-columns: 1fr; } .presum-theme .z-row, .presum-theme .z-row:nth-child(even) { flex-direction: column; gap: 0; } .presum-theme .z-image { width: 100%; height: 250px; } .presum-theme .z-content { padding: 30px; } .presum-theme .hero-section { flex-direction: column; justify-content: center; height: auto; min-height: 100vh; padding-top: 120px; padding-bottom: 40px; } .presum-theme .hero-title { font-size: 2.2rem; } .presum-theme .hero-desc { font-size: 0.9rem; } .presum-theme .search-bar-wrapper { position: relative; bottom: 0; margin-top: 30px; margin-bottom: 0px; width: 100%; } .presum-theme .search-fields { flex-direction: column; gap: 15px; padding: 20px; } .presum-theme .search-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; padding-right: 0; width: 100%; } .presum-theme .search-field:last-child { border-bottom: none; padding-bottom: 0; } .presum-theme .search-tabs { flex-direction: column; } .presum-theme .search-tab { flex: 1 1 100%; justify-content: center; padding: 12px; font-size: 0.8rem; } .presum-theme .services-grid { grid-template-columns: 1fr !important; } .presum-theme .service-item { border-right: none; border-bottom: 1px solid #eaeaea; } .presum-theme .dest-header { flex-direction: column; text-align: center; } .presum-theme .dest-header .view-all { position: static; margin-top: 15px; } .presum-theme .destinations-grid { grid-template-columns: 1fr; } .presum-theme .footer-grid { grid-template-columns: 1fr; } .presum-theme .header-nav { display: none; } .presum-theme .header-right { display: none; } .presum-theme .mobile-menu-toggle { display: block; margin-left: auto; } .presum-theme .premium-dest-overlay { padding: 25px; height: auto; } .presum-theme .premium-dest-title { font-size: 1.6rem; } /* FIX NEWSLETTER OVERFLOW */ .presum-theme .newsletter-wrapper { flex-direction: column; gap: 20px; text-align: center; } .presum-theme .newsletter-info { flex-direction: column; gap: 10px; } .presum-theme .newsletter-form { width: 100%; flex-direction: column; } .presum-theme .newsletter-form input { width: 100%; margin-bottom: 10px; border-right: 1px solid rgba(255,255,255,0.1); } .presum-theme .newsletter-form button { width: 100%; } } html, body { overflow-x: hidden; }