@import url(https://fonts.googleapis.com/css?family=Dancing+Script:700); /* ================================ DEFAULTS ================================ */ #topcontrol { display: none; } :root { --primary-green: #3EB248; --vibrant-green: #2F9E44; --bright-yellow: #FEF126; --golden-yellow: #F5D81B; --warm-cream: #FFF8F0; --red-accent: #D42429; --charcoal: #2C2C2C; --light-sand: #FFF6E1; --tropical-blue: #1B73B9; } body { font-family: 'Outfit', sans-serif; color: var(--charcoal); background: var(--warm-cream); } /* Custom Typography */ h1, h2, h3, h4, h5, h6, .display-1, .display-2 { font-family: 'Archivo Black', sans-serif; } /* ================================ NAVIGATION ================================ */ .navbar { background: rgba(255, 248, 240, 0.95) !important; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); padding: 0px; animation: slideDown 0.6s ease-out; } @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .navbar-brand { font-family: 'Archivo Black', sans-serif; font-size: 1.8rem; color: var(--charcoal) !important; letter-spacing: -0.5px; } .navbar-nav .nav-link { color: var(--charcoal) !important; font-weight: 500; font-size: 0.95rem; letter-spacing: 0.3px; margin: 0 1rem; position: relative; transition: color 0.3s; } .navbar-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-green); transition: width 0.3s; } .navbar-nav .nav-link:hover::after { width: 100%; } .navbar-nav .nav-link:hover { color: var(--primary-green) !important; } /* Responsive Logo Sizing */ .navbar-logo { max-width: 150px; width: 100%; height: auto; } @media (max-width: 374px) { .navbar-logo { max-width: 150px; /* Smaller logo on tiny screens */ } .navbar .container { padding-left: 0.75rem; padding-right: 0.75rem; } } .btn-reserve { background: var(--red-accent) !important; color: white !important; padding: 0.8rem 1.8rem !important; border-radius: 50px !important; font-weight: 600 !important; box-shadow: 0 4px 15px rgba(217, 32, 39, 0.3); border: none !important; transition: all 0.3s; } .btn-reserve:hover { background: #B81D23 !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217, 32, 39, 0.4); } /* ======================================== MOBILE SLIDE-IN PANEL ======================================== */ /* Dark Overlay */ .mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); z-index: 1998; opacity: 0; visibility: hidden; transition: all 0.4s ease; } .mobile-menu-overlay.active { opacity: 1; visibility: visible; } /* Slide-In Panel */ .mobile-menu-panel { position: fixed; top: 0; right: 0; width: 85%; max-width: 400px; height: 100vh; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); background: linear-gradient(135deg, var(--primary-green) 0%, var(--vibrant-green) 100%); z-index: 1999; overflow-y: auto; box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3); } .mobile-menu-panel.active { transform: translateX(0); } /* Panel Header */ .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.2); } .mobile-menu-logo { display: flex; align-items: center; } .mobile-menu-logo img { height: auto; max-height: 50px; } .mobile-menu-close { background: none; border: none; color: white; cursor: pointer; transition: all 0.3s; padding: 0.5rem; display: flex; align-items: center; justify-content: center; } .mobile-menu-close:hover { transform: rotate(90deg); color: var(--bright-yellow); } /* Panel Content */ .mobile-menu-content { padding: 2rem 0; } /* Menu Links */ .mobile-menu-links { list-style: none; padding: 0; margin: 0 0 2rem 0; } .mobile-menu-item { opacity: 0; transform: translateX(50px); animation: slideInMenuItem 0.5s forwards; } @keyframes slideInMenuItem { to { opacity: 1; transform: translateX(0); } } .mobile-menu-panel:not(.active) .mobile-menu-item { animation: none; opacity: 0; } .mobile-menu-link { display: flex; align-items: center; justify-content: space-between; padding: .5rem 1.5rem; color: white; text-decoration: none; font-size: 1.2rem; font-weight: 600; transition: all 0.3s; border-left: 4px solid transparent; } .mobile-menu-link:hover { background: rgba(255, 255, 255, 0.1); border-left-color: var(--bright-yellow); color: var(--bright-yellow); padding-left: 2.5rem; } .mobile-menu-link i:first-child { font-size: 1.3rem; width: 30px; } .mobile-menu-link span { flex: 1; margin-left: 1rem; } .mobile-menu-link i:last-child { font-size: 0.9rem; opacity: 0.5; } /* Panel Footer */ .mobile-menu-footer { padding: 0 2rem 2rem 2rem; border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 2rem; } .mobile-menu-contact { margin-bottom: 2rem; } .mobile-menu-contact p { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; display: flex; align-items: center; } .mobile-menu-contact a { color: white; text-decoration: none; } .mobile-menu-contact a:hover { color: var(--bright-yellow); } /* Social Icons */ .mobile-menu-social { display: flex; gap: 1rem; justify-content: center; } .social-icon { width: 45px; height: 45px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s; font-size: 1.1rem; } .social-icon:hover { background: var(--bright-yellow); color: var(--charcoal); transform: translateY(-3px); } /* Prevent body scroll when menu is open */ body.mobile-menu-open { overflow: hidden; } /* Enhanced Desktop Nav Icons */ @media (min-width: 992px) { .navbar-nav .nav-link i { opacity: 0.7; transition: opacity 0.3s; } .navbar-nav .nav-link:hover i { opacity: 1; } } /* ======================================== MIGUEL'S MODAL STYLING ======================================== */ /* Modal Backdrop - darker with blur */ .modal-backdrop.show { opacity: 0.8; backdrop-filter: blur(8px); } /* Modal Dialog Animation */ .modal.fade .modal-dialog { transform: scale(0.8) translateY(-50px); transition: transform 0.3s ease-out; } .modal.show .modal-dialog { transform: scale(1) translateY(0); } /* Modal Content Container */ .miguel-modal-content { border-radius: 25px !important; border: none !important; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); background: linear-gradient(135deg, var(--primary-green) 0%, var(--vibrant-green) 100%); position: relative; } /* Decorative pattern overlay */ .miguel-modal-content::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; } /* Modal Header */ .miguel-modal-header { background: rgba(0, 0, 0, 0.15); border-bottom: 2px solid rgba(255, 255, 255, 0.2); padding: .5rem 2rem; position: relative; z-index: 1; } .miguel-modal-header .modal-title { font-family: 'Archivo Black', sans-serif; font-size: 2rem; color: white; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); margin: 0; } .miguel-modal-header .miguel-header-cta { margin: 0.2rem 0 0; /* Replaces mt-2 mb-0 – tighter control */ font-size: 1rem; /* Between fs-5 and fs-6; adjust to 1.1rem or 1.4rem */ font-weight: 600; /* Semibold – stands out more than light */ color: white; letter-spacing: 0.6px; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7); /* Stronger dark shadow for lift on gradient bg */ opacity: 0.95; /* Slightly less than 1 for softer feel */ } /* Add fun emoji decoration */ .miguel-modal-header .modal-title::before { content: '🌮'; margin-right: 0.5rem; display: inline-block; animation: bounce 2s infinite; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } } /* Close button */ .miguel-modal-header .btn-close-white { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); opacity: 0.9; transition: all 0.3s; } .miguel-modal-header .btn-close-white:hover { opacity: 1; transform: rotate(90deg); } /* Modal Body */ .miguel-modal-body { padding: 2rem; background: white; position: relative; z-index: 1; } .miguel-modal-body p { font-size: 1.1rem; line-height: 1.7; color: var(--charcoal); margin-bottom: 1.5rem; } /* Styled list */ .miguel-modal-body ul { list-style: none; padding: 0; margin: 0; } .miguel-modal-body ul li { padding: 0.75rem 0; padding-left: 2rem; position: relative; font-size: 1rem; color: var(--charcoal); border-bottom: 1px solid rgba(0, 0, 0, 0.05); } .miguel-modal-body ul li:last-child { border-bottom: none; } /* Custom bullet icons */ .miguel-modal-body ul li::before { content: '🌶️'; position: absolute; left: 0; font-size: 1.2rem; } /* Modal Footer */ .miguel-modal-footer { background: var(--light-sand); border-top: 2px solid rgba(0, 0, 0, 0.05); padding: 1.5rem 2rem; position: relative; z-index: 1; justify-content: center; } /* OK Button */ .miguel-ok-btn { background: var(--red-accent) !important; color: white !important; padding: 1rem 2.5rem !important; border-radius: 50px !important; font-weight: 700 !important; font-size: 1.1rem !important; border: none !important; box-shadow: 0 8px 25px rgba(212, 36, 41, 0.4); transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.5px; } .miguel-ok-btn:hover { background: #B81D23 !important; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(212, 36, 41, 0.5); } .miguel-ok-btn:active { transform: translateY(-1px); } /* Add festive decorative borders */ .miguel-modal-footer::before { content: '🎉 🌮 🎊 🌮 🎉'; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: white; font-size: 1.2rem; opacity: 0.7; } /* Responsive adjustments */ @media (max-width: 576px) { .miguel-modal-header .modal-title { font-size: 1.5rem; } .miguel-modal-body { padding: 1.5rem; } .miguel-modal-body p { font-size: 1rem; } .miguel-ok-btn { padding: 0.9rem 2rem !important; font-size: 1rem !important; } .modal-dialog { margin: 0.5rem; } } /* ======================================== MIGUEL'S FOOTER STYLING ======================================== */ footer { background: var(--charcoal); color: white; padding: 4rem 0 2rem; } .footer-heading { font-family: 'Archivo Black', sans-serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--bright-yellow); } footer a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s; } footer a:hover { color: var(--bright-yellow); } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; margin-top: 3rem; text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; } /* Responsive */ @media (max-width: 991px) { .hero-title { font-size: 3.5rem; } .section-title { font-size: 2.5rem; } } @media (max-width: 767px) { .hero-title { font-size: 2.5rem; } .hero-buttons { display: flex; /* or use Bootstrap's d-flex class */ justify-content: center; /* or justify-content-center */ gap: 1rem; /* optional: nice spacing between buttons; adjust as needed (1rem = ~16px) */ flex-wrap: wrap; /* optional: allows buttons to wrap on very small screens */ } .btn-primary-custom { padding: 1rem 2rem !important; } .hero-text { font-size: 1.1rem; } .section-title { font-size: 2.2rem; } } /* ======================================== MIGUEL'S BACK TO TOP BUTTON ======================================== */ .miguel-scroll-top { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: linear-gradient(135deg, var(--red-accent), #B81D23); border: 3px solid var(--bright-yellow); border-radius: 50%; color: white; font-size: 1.3rem; cursor: pointer; box-shadow: 0 8px 25px rgba(212, 36, 41, 0.4); z-index: 1000; opacity: 0; visibility: hidden; transform: translateY(100px) rotate(0deg); transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); display: flex; align-items: center; justify-content: center; } .miguel-scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0) rotate(360deg); } .miguel-scroll-top:hover { background: linear-gradient(135deg, var(--primary-green), var(--vibrant-green)); border-color: white; transform: translateY(-5px) scale(1.1); box-shadow: 0 12px 35px rgba(62, 178, 72, 0.5); } .miguel-scroll-top:active { transform: translateY(-2px) scale(1.05); } /* Arrow icon */ .miguel-scroll-top i { position: absolute; animation: bounceArrow 2s infinite; } @keyframes bounceArrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } } /* Rotating emoji behind arrow */ .miguel-scroll-emoji { position: absolute; font-size: 2rem; opacity: 0.8; animation: rotateEmoji 4s linear infinite; } @keyframes rotateEmoji { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /* Add pulse effect when button appears */ .miguel-scroll-top.visible::before { content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; border-radius: 50%; border: 3px solid var(--bright-yellow); animation: pulseRing 2s infinite; } @keyframes pulseRing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.3); opacity: 0; } } /* Responsive */ @media (max-width: 767px) { .miguel-scroll-top { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 1.1rem; } .miguel-scroll-emoji { font-size: 1.5rem; } }