/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    /* Remove background image to show video background */
    background: none;
    text-align: center;
    color: #ff5733;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    background-size: cover;
    overflow: hidden;
    object-fit: cover;
}

/* Header */
header {
    background-color: rgba(30, 58, 95, 0.7);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    animation: slideDown 1s ease forwards;
}

/* Style for top image/banner */
.top-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Logo image */
.logo {
    position: absolute;
    bottom: 50px;
    left: 20px;
    height: 120px;
    /* Increased size */
    width: 120px;
    /* Width and height should be equal */
    border-radius: 50%;
    /* Circular shape */
    object-fit: contain;
    /* Ensures the full logo is visible */
    background-color: white;
    /* Optional: Adds a background to fill the circle */
    padding: 10px;
    /* Ensures text and icon inside don’t get cropped */
}

/* Place-box images */
.place-box img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.place-box img:hover {
    transform: scale(1.1) rotate(-2deg);
}

/* Text styles */
.welcome-note {
    font-weight: bold;
    font-size: 2.5rem;
    animation: fadeSlideIn 2s ease forwards, colorPulse 5s ease infinite;
}

.about-city {
    font-size: 1.1rem;
    color: #ff5733;
    animation: fadeSlideIn 2.5s ease forwards;
}

nav {
    background: #ff5733;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    box-shadow: none;
    animation: slideUp 1s ease forwards;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #fffacd;
    transform: scale(1.2);
    text-shadow: 0 0 8px #fffacd;
}

/* Main Content */
.main {
    padding: 20px;
}

/* Section Titles */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #ff5733;
    margin-top: 30px;
    padding: 10px;
    border-bottom: 4px solid #ff8d1a;
    display: inline-block;
    font-family: 'Georgia', serif;
    animation: fadeInUp 1.5s ease forwards;
}

/* Cards for Places */
.place-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
}

.place-box {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    width: 340px;
    padding: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards, float 4s ease-in-out infinite;
    animation-delay: var(--delay);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.explore-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #ff5733;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 87, 51, 0.6);
}

.explore-btn:hover {
    background-color: #e04e2a;
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(255, 141, 26, 0.8);
}

.hotel-tabs {
    text-align: center;
    margin: 20px 0;
}

.tab-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    background-color: #1e3a8a;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: #3b82f6;
}

.hotel-section {
    display: none;
}

.hotel-section.active {
    display: block;
}

.place-box button {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 14px;
}

.place-box button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.place-box a {
    text-decoration: none;
}

/* Footer */
footer {
    font-family: Georgia, serif;
    font-size: 16px;
    color: #ff5733;
    padding: 20px;
    background-color: #f0f0f0;
    animation: fadeIn 2s ease forwards;
    animation-delay: 3s;
    overflow: hidden;
    position: relative;
}

/* Contact Page Styles */
.contact-content {
    color: #004080;
    /* Dark blue font color */
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    font-family: 'Arial', sans-serif;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 64, 128, 0.3);
    animation: colorPulseContact 6s ease-in-out infinite;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1E3A5F;
    /* Changed color to deep royal blue */
    text-align: center;
    margin: 30px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid white;
    /* Changed border to white for better visibility */
    cursor: pointer;
    transition: color 0.4s ease, transform 0.4s ease;
    animation: fadeInUp 2s ease forwards;
}

header h1:hover {
    color: #3A5F8A;
    /* Lighter blue on hover */
    transform: scale(1.1);
    text-shadow: 0 0 10px #3A5F8A;
}

.contact-content h2,
.contact-content h3 {
    color: #003366;
    margin-bottom: 15px;
    animation: fadeInUp 2s ease forwards;
}

.contact-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    animation: fadeInText 2.5s ease forwards;
    color: #0066cc;
}

.contact-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.placement-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Animations for contact page */
@keyframes colorPulseContact {

    0%,
    100% {
        background-color: rgba(255, 255, 255, 0.85);
        color: #004080;
    }

    50% {
        background-color: rgba(255, 223, 186, 0.85);
        color: #cc6600;
    }
}

.contact-content h1,
.contact-content h2 {
    color: #003366;
    margin-bottom: 15px;
}

.contact-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.scrolling-names {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-weight: bold;
    white-space: normal;
}

.name-link {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 6px 10px;
}

.name-link a {
    color: #0A66C2;
    text-decoration: none;
}

.name-link a:hover {
    text-decoration: underline;
}

.linkedin-icon {
    cursor: pointer;
    display: inline-flex;
    vertical-align: middle;
    font-size: 1.2em;
    color: #0A66C2;
    /* LinkedIn blue */
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Animations */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes colorPulse {
    0%, 100% {
        color: #ff5733;
        text-shadow: 0 0 5px #ff5733;
    }
    50% {
        color: #ff8d1a;
        text-shadow: 0 0 10px #ff8d1a;
    }
}
