* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0 auto;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    background: url('no9maldives.jpg') center/cover no-repeat fixed;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 4, 121, 0.6), rgba(12, 3, 51, 0.5));
    animation: overlayPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('no8iceland.jpg') center/cover no-repeat;
    opacity: 0;
    animation: backgroundFade 20s ease-in-out infinite;
    z-index: 0;
}

.hero > nav {
    position: relative;
    z-index: 1001;
}

.hero > .gallery-container {
    position: relative;
    z-index: 2;
}

@keyframes overlayPulse {
    0%, 100% {
        background: linear-gradient(135deg, rgba(91, 4, 121, 0.6), rgba(12, 3, 51, 0.5));
    }
    50% {
        background: linear-gradient(135deg, rgba(91, 4, 121, 0.5), rgba(12, 3, 51, 0.4));
    }
}

@keyframes backgroundFade {
    0%, 45%, 100% {
        opacity: 0;
    }
    50%, 95% {
        opacity: 0.6;
    }
}

nav {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.whole {
    display: flex;
    align-items: center;
    gap: 40px;
}

.whole li {
    list-style: none;
    display: inline-block;
}

.whole li a {
    display: block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: bold;
    padding: 5px 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.whole li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.logo {
    border-radius: 50px;
    display: inline-block;
    box-shadow: 2px 2px 15px rgb(14, 0, 0);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}


.gallery-container {
    padding-top: 120px;
    padding-bottom: 50px;
}

.page-header {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item a {
    display: block;
    position: relative;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.7));
}

.gallery-overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
}

.explore-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.explore-btn i {
    margin-right: 8px;
}

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

/* Chatbot Styles - Global Consistent Theme */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    z-index: 999;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(74, 44, 91, 0.7);
    background: linear-gradient(135deg, #5d3770 0%, #3d2015 100%);
}

.chatbot-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    max-width: calc(100vw - 60px);
    height: 600px;
    max-height: calc(100vh - 180px);
    background: linear-gradient(135deg, rgba(30, 20, 40, 0.98) 0%, rgba(20, 10, 5, 0.98) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    display: none;
    flex-direction: column;
    z-index: 998;
    overflow: hidden;
}

.chatbot-modal.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.chatbot-header {
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.chatbot-header h3 {
    margin: 0;
    font-size: 18px;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: rgba(10, 5, 2, 0.3);
}

/* Custom Scrollbar for Chatbot */
.chatbot-messages::-webkit-scrollbar {
    width: 8px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5d3770 0%, #3d2015 100%);
}

.bot-message,
.user-message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 85%;
    animation: slideIn 0.3s ease;
}

.bot-message {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.user-message {
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    margin-left: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.chatbot-input-area {
    display: flex;
    padding: 15px;
    background: rgba(20, 10, 5, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.chatbot-input-area input {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 14px 20px;
    font-size: 14px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-input-area input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.chatbot-input-area input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chatbot-input-area button {
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.chatbot-input-area button:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #5d3770 0%, #3d2015 100%);
    box-shadow: 0 6px 15px rgba(74, 44, 91, 0.6);
}

.chatbot-suggestions {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(20, 10, 5, 0.9);
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar for Suggestions */
.chatbot-suggestions::-webkit-scrollbar {
    height: 6px;
}

.chatbot-suggestions::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.chatbot-suggestions::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #4a2c5b 0%, #2c1810 100%);
    border-radius: 10px;
}

.suggestion-btn {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.suggestion-btn:hover {
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 44, 91, 0.5);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 5%;
    }
    
    .whole {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
    }
    
    .whole.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .explore-btn {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .chatbot-modal {
        right: 15px;
        bottom: 90px;
        width: calc(100vw - 30px);
    }
    
    .chatbot-toggle {
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .logo {
        height: 50px;
        width: 50px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .cta-section {
        padding: 30px 15px;
    }
    
    .cta-section h2 {
        font-size: 20px;
    }
}

/* Made with Bob */

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 40px 5%;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-links i {
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #b8b8b8;
    font-size: 14px;
    margin: 5px 0;
}

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #764ba2;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 5%;
    }
}
