/* ============================================
   WamOceanic Website - Main Stylesheet
   ============================================ */

:root {
    --primary-color: #0066cc;
    --secondary-color: #00a8cc;
    --ocean-dark: #001a4d;
    --ocean-light: #4db8d8;
    --text-dark: #1a1a1a;
    --text-light: #f0f0f0;
    --accent-orange: #ff6b35;
    --success-color: #2ecc71;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #fff !important;
}

.navbar-brand i {
    margin-right: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.nav-link {
    margin: 0 0.5rem;
    transition: var(--transition) !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--ocean-light) !important;
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, #003d99 0%, #004d99 50%, #005a99 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section-secondary {
    background: linear-gradient(135deg, #003d99 0%, #004d99 50%, #005a99 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 60px;
    position: relative;
}

.hero-kids-section {
    background: linear-gradient(135deg, #4db8d8 0%, #2a9fd9 50%, #1a7fb8 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 60px;
    position: relative;
}

/* ============================================
   PROFILE SECTION
   ============================================ */

.profile-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    max-width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   SECTIONS
   ============================================ */

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    position: relative;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-section,
.paths-section,
.divisions-section,
.releases-section {
    background: #fff;
}

.about-section {
    background: #f8f9fa;
}

.about-image-wrapper,
.artist-image-wrapper,
.author-image-wrapper {
    min-height: 400px;
   
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.about-image-wrapper img{
     width: 100%;
    height: 400px;
    object-fit: contain;
}
.ocean-wave-animation {
    width: 400px;
    height: 500px;
    object-fit: contain;
    background-size: 600px 120px;
    animation: wave 15s linear infinite;
}

/* ============================================
   PATH CARDS
   ============================================ */

.path-card {
    text-decoration: none;
    color: inherit;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.path-card-inner {
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.card-artist {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.card-author {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.path-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.path-card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.path-card p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.learn-more {
    display: inline-block;
    font-weight: 600;
    opacity: 0.95;
    transition: var(--transition);
}

.path-card:hover .learn-more {
    opacity: 1;
}

/* ============================================
   DIVISION CARDS
   ============================================ */

.division-card {
    text-decoration: none;
    color: inherit;
    padding: 2.5rem;
    height: 400px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    transition: var(--transition);
    background: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.division-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
}

.division-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.division-card h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.division-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   RELEASE CARDS
   ============================================ */

.release-card {
    padding: 2rem;
    border-left: 5px solid var(--secondary-color);
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.release-card:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transform: translateX(5px);
}

.release-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.release-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--ocean-light));
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ============================================
   STREAMING CARDS
   ============================================ */

.streaming-card {
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    background: white;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.streaming-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-spotify:hover { color: #1DB954; }
.platform-apple:hover { color: #000; }
.platform-amazon:hover { color: #FF9900; }
.platform-youtube:hover { color: #FF0000; }
.platform-soundcloud:hover { color: #FF7700; }
.platform-bandcamp:hover { color: #1DA0C3; }

/* ============================================
   ALBUM CARDS
   ============================================ */

.album-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    text-align: center;
}

.album-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.album-cover {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

/* ============================================
   BOOK CARDS
   ============================================ */

.book-card {
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
}

.book-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.book-cover-small {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-align: center;
    padding: 1rem;
}

.book-cover-publication {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    text-align: center;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.book-cover-publication.hindi-book {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.book-cover-publication p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.publication-card {
    padding: 1.5rem;
    border-radius: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    height: 100%;
}

.publication-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.publication-details h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rating {
    font-size: 0.9rem;
}

.book-description {
    color: #666;
    line-height: 1.6;
}

.publication-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.book-price {
    font-size: 1.5rem;
}

.coming-soon-card {
    position: relative;
}

.coming-soon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    z-index: 10;
}

/* ============================================
   CHAPTER ACCORDION
   ============================================ */

.chapter-accordion {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.chapter-accordion:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.chapter-header {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(90deg, #f8f9fa, #ffffff);
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--text-dark);
}

.chapter-header:hover {
    background: linear-gradient(90deg, #e8f4f8, #f0f8fc);
}

.chapter-header i {
    transition: var(--transition);
}

.chapter-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.chapter-content {
    padding: 2rem;
    background: white;
    border-top: 2px solid #e0e0e0;
    line-height: 1.8;
    color: #333;
}

.chapter-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* ============================================
   STUDIO FORM
   ============================================ */

.studio-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

/* ============================================
   INFO BOXES
   ============================================ */

.info-box {
    padding: 2rem;
}

.info-box i {
    font-size: 2.5rem;
    color: var(--ocean-light);
    margin-bottom: 1rem;
}

.info-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-feature i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ============================================
   KIDS PAGE CONTENT
   ============================================ */

.kids-content-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.kids-content-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.kids-content-card .card-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.age-group-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.age-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card {
    padding: 2rem;
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--ocean-light);
    margin-bottom: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: white !important;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color) !important;
}

.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
    color: white;
    margin-top: 5rem;
}

.footer a:hover {
    color: var(--ocean-light) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 600px 0;
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-left {
    animation: fade-in-left 1s ease-out;
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out 0.2s both;
}

.animate-fade-in-down {
    animation: fade-in-down 1s ease-out;
}

.animate-slide-up {
    animation: slide-up 1s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   HIGHLIGHT TEXT
   ============================================ */

.highlight-text {
    background: linear-gradient(135deg, var(--ocean-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .path-card {
        min-height: 300px;
    }

    .path-card-inner {
        padding: 2rem 1rem;
    }

    .profile-image-wrapper {
        margin-top: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn-lg {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
    }

    .chapter-content {
        padding: 1.5rem;
    }

    .studio-form {
        padding: 1.5rem;
    }

    .service-card,
    .album-card {
        padding: 1.5rem;
    }
.division-card{
    height: auto;
     padding: 1.5rem;
}
    .about-image-wrapper,
    .artist-image-wrapper,
    .author-image-wrapper {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .path-card-inner {
        padding: 1.5rem 1rem;
    }

    .path-card i {
        font-size: 2.5rem;
    }

    .division-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .row {
        margin: 0;
    }

    .studio-form {
        padding: 1rem;
    }

    .form-control,
    .form-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}
