/* Royal Caribbean Landing Page - Main Styles */

/* Font Face Declarations */
@font-face {
    font-family: 'Kapra Neue Pro';
    src: url('../fonts/Typoforge-Studio-Kapra-Neue-Pro-Semi-Bold-Expanded.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-stretch: expanded;
}

@font-face {
    font-family: 'Kapra Neue Pro';
    src: url('../fonts/Typoforge-Studio-Kapra-Neue-Pro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Darwin Pro';
    src: url('../fonts/Fontspring-DEMO-darwinpro-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Darwin Pro';
    src: url('../fonts/Fontspring-DEMO-darwinpro-extralight.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Darwin Pro';
    src: url('../fonts/Fontspring-DEMO-darwinpro-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Kapra Neue Pro';
    src: url('../fonts/Typoforge-Studio-Kapra-Neue-Pro-Regular.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Kapra Neue Pro';
    src: url('../fonts/Typoforge-Studio-Kapra-Neue-Pro-Thin-Condensed.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-stretch: condensed;
}

/* CSS Variables */
:root {
    --primary-blue: #001871;
    --secondary-blue: #023254;
    --accent-pink: #ff0db2;
    --white: #ffffff;
    --dark-blue: #062132;
    --gold: #FFD700;
    --text-dark: #000000;
    --text-light: #666666;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Darwin Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

p{
    font-family: 'Darwin Pro', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Kapra Neue Pro', sans-serif;
}

.arialfont{
    font-family: 'Arial', sans-serif !important; 
}
/* Fixed Query Button */
.fixed-query-btn {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.btn-query {
    background: var(--accent-pink);
    color: var(--white);
    border: none;
    padding: 20px 10px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 0 8px 8px 0;
}

.btn-query:hover {
    background: #ff4d7d;
    transform: translateX(5px);
}

.btn-query span {
    display: block;
}

/* Header Styles */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background:rgba(255,255,255,0.7);
}

.navbar {
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container .logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.crown-icon {
    color: var(--gold);
    font-size: 24px;
}

.logo-text {
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-pink);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-pink);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-blue);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-control-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}
/* Video Container */
.video-container {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.video-overlay-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 150px;
    z-index: 10;
    pointer-events: auto;
    background: transparent;
    cursor: default;
}

.video-container::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(255 255 255 / 30%) 0%, rgb(255 255 255 / 2%) 100%, rgba(256, 256, 256, 0) 100%);
}
/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-weight: 100;
}

.read-more-link {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #ff4d7d;
    text-decoration: underline;
}

/* Statistics Section */
.stat-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: var(--secondary-blue);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 35px;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: 'Kapra Neue Pro', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0;
    font-weight: 300;
    text-transform: lowercase;
}

/* Top Sailings Section */
.top-sailings-section {
    background: var(--primary-blue);
}

.sailing-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    border: 2px solid #E6F2FF;
}

.sailing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sailing-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sailing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sailing-card:hover .sailing-image img {
    transform: scale(1.1);
}

.sailing-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to top, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 50%) 50%, transparent 100%);
    z-index: 2;
    transition: height 0.3s ease;
}

.sailing-card:hover::after {
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.sailing-content {
    position: relative;
    z-index: 3;
    padding: 2rem 2rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sailing-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.5px;
}

.sailing-ship,
.sailing-date {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
}
.sailing-card:hover .sailing-content{
    padding: 2rem;
}

.sailing-card:hover .sailing-ship,
.sailing-card:hover .sailing-date {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 0.75rem;
}

.sailing-ship strong,
.sailing-date strong {
    font-weight: 600;
}

.know-more-btn {
    background: #FFD700;
    border: none;
    color: var(--primary-blue);
    padding: 7px 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
}

.sailing-card:hover .know-more-btn {
    opacity: 1;
    max-height: 100px;
    padding: 12px 24px;
    margin-top: 1.5rem;
}

.know-more-btn:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    color: var(--primary-blue);
}

/* Fleet Section */
.fleet-section {
    background: var(--white);
}

.fleet-tabs .nav-tabs {
    border: none;
    background: #e8e8e8;
    padding: 8px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.fleet-tabs .nav-item {
    margin: 0;
}

.fleet-tabs .nav-link {
    color: var(--white);
    border: none;
    padding: 10px 18px;
    font-weight: 100;
    transition: all 0.3s ease;
    margin: 0;
    background: #b0b0b0;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.fleet-tabs .nav-link:hover {
    background: #a0a0a0;
    color: var(--white);
}

.fleet-tabs .nav-link.active {
    color: var(--white);
    background: var(--primary-blue);
    border: none;
}

.ship-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.oasis-slider .ship-card, .quantum-slider .ship-card{
    margin-bottom: 5px !important;
}

.ship-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.ship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ship-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ship-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.special-features-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0;
    font-weight: 500;
}

.ship-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.ship-features li {
    padding: 0 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
    font-size: 0.8rem;
    font-weight: 200;
}

.ship-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-dark);
}

.ship-know-more-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 6px 22px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
    margin-top: auto;
    align-self: flex-end;
    margin-left: auto;
}

.ship-know-more-btn:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

/* Experiences Section */
.experiences-section {
    background: var(--white);
}

.experience-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.experience-header {
    background: var(--primary-blue);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.experience-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experience-icon i {
    font-size: 28px;
    color: var(--white);
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.experience-body {
    background: #f8f8f8;
    padding: 1.5rem;
    flex-grow: 1;
    max-height: 350px;
    overflow-y: scroll;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-list li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.experience-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: normal;
}

/* Awards Section */
.awards-section {
    background: var(--white);
}

.award-card {
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.award-icon {
    font-size: 50px;
    color: var(--white);
    margin-bottom: 1rem;
}

.award-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.award-years {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.award-source {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    background: var(--light-blue);
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.main-footer {
    background: var(--dark-blue);
    color: var(--white);
}

.footer-logo h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 10px 10px 0 0;
}

.modal-title {
    font-weight: bold;
}

.btn-close {
    filter: invert(1);
}

/* Utility Classes */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Button Styles */
.btn-primary {
    background: #ffd200;
    border: none;
}

.btn-primary:hover {
    background: #ff4d7d;
}

