/* IDEAS Home Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a1e;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Page Wrapper - ensures vertical stacking */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(26, 26, 30, 0.95) 0%, transparent 100%);
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand img {
    height: 25px;
    transition: all 0.3s ease;
}

.nav-brand:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn-login):not(.profile-link)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c4a35a;
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-login):not(.profile-link):hover {
    color: #fff;
}

.nav-links a:not(.btn-login):not(.profile-link):hover::after {
    width: 100%;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 163, 90, 0.15);
    padding: 10px 20px;
    border-radius: 6px;
    color: #c4a35a !important;
}

.profile-link:hover {
    background: rgba(196, 163, 90, 0.25);
}

.btn-login {
    background: linear-gradient(135deg, #d4627a 0%, #c4516a 100%);
    padding: 12px 28px;
    border-radius: 6px;
    color: #fff !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 98, 122, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 98, 122, 0.4);
    background: linear-gradient(135deg, #e0738b 0%, #d4627a 100%);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #d4d4d4;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 30, 0.98);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .btn-login {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}

/* Logo Container */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrapper {
    position: relative;
    width: 350px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo-svg {
    width: 280px;
    height: 350px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

/* IDEAS Logo Text */
.logo-text {
    display: flex;
    gap: 24px;
    margin-top: 30px;
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 8px;
    color: #8a9ba8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text span {
    transition: all 0.3s ease;
}

.logo-text span:hover {
    color: #d4dde4;
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(138, 155, 168, 0.4);
}

/* Tagline */
.tagline-container {
    text-align: left;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
}

.tagline .pink {
    color: #d4627a;
}

.tagline .gold {
    color: #c4a35a;
}

/* Full Name */
.full-name {
    text-align: center;
    margin-top: 40px;
}

.full-name h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    letter-spacing: 8px;
    color: #c4a35a;
    text-transform: uppercase;
    font-weight: 400;
}

/* Image Slider Section */
.image-slider {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1a1a1e;
}

.slider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    width: 100%;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(196, 163, 90, 0.3);
    transform: scale(1.1);
}

.image-display {
    flex: 1;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.image-display img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slider-nav {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-thumb {
    width: 80px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    background: none;
    padding: 0;
}

.nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-thumb:hover,
.nav-thumb.active {
    opacity: 1;
    border-color: #c4a35a;
    transform: scale(1.05);
}

.gallery-btn {
    margin-top: 30px;
    padding: 14px 40px;
    background: transparent;
    border: 2px solid #c4a35a;
    color: #c4a35a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: #c4a35a;
    color: #1a1a1e;
}

/* About Section */
.about-section {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
    background: #222226;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.about-content p {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-content .quote {
    font-size: 24px;
    color: #d4627a;
}

.about-content .highlight {
    color: #c4a35a;
    font-weight: 700;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Special Thanks Section */
.thanks-section {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1e;
}

.thanks-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 4px;
}

.thanks-card {
    background: linear-gradient(135deg, rgba(196, 163, 90, 0.1) 0%, rgba(212, 98, 122, 0.1) 100%);
    border: 1px solid rgba(196, 163, 90, 0.3);
    border-radius: 16px;
    padding: 40px 60px;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.thanks-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 163, 90, 0.2);
}

.thanks-card h3 {
    font-size: 18px;
    color: #c4a35a;
    margin-bottom: 10px;
    line-height: 1.5;
}

.thanks-card p {
    font-size: 20px;
    color: #fff;
    letter-spacing: 5px;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    animation: fadeInUp 1s ease-out;
}

.tagline-container {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.full-name {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .tagline-container {
        text-align: center;
    }

    .tagline {
        font-size: 36px;
    }

    .logo-wrapper {
        width: 280px;
        height: 320px;
    }

    .logo-svg {
        width: 220px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .tagline {
        font-size: 28px;
    }

    .logo-text {
        font-size: 24px;
        gap: 16px;
    }

    .full-name h4 {
        font-size: 12px;
        letter-spacing: 4px;
        padding: 0 20px;
    }

    .logo-wrapper {
        width: 220px;
        height: 260px;
    }

    .logo-svg {
        width: 180px;
        height: 220px;
    }

    /* Slider responsive */
    .slider-content {
        flex-direction: column;
        gap: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .image-display img {
        height: 250px;
    }

    .nav-thumb {
        width: 60px;
        height: 45px;
    }

    /* About responsive */
    .about-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content .quote {
        font-size: 18px;
    }

    .about-image {
        max-width: 100%;
    }

    /* Thanks responsive */
    .thanks-section h1 {
        font-size: 20px;
    }

    .thanks-card {
        padding: 30px 20px;
    }

    .thanks-card h3 {
        font-size: 14px;
    }
}