/* Global Styles */
:root {
    --primary-color: #d15b97; /* Soft rose pink */
    --secondary-color: #9e4c8a; /* Orchid purple */
    --accent-color: #f5d3e5; /* Light lavender pink */
    --light-bg: #fff6fb; /* Very soft pink background */
    --dark-text: #4a2e48; /* Deep plum */
    --light-text: #8a6b87; /* Muted mauve */
    --gold: #d8b778; /* Warm gold accent */
    --header-bg: linear-gradient(to right, #c866a1, #9a5889); /* Gradient header */
    --footer-bg: linear-gradient(to right, #9a5889, #c866a1); /* Gradient footer */
    --btn-gradient: linear-gradient(to right, #e37fae, #c866a1); /* Button gradient */
    --card-shadow: 0 10px 25px rgba(198, 102, 161, 0.15);
    --hover-shadow: 0 15px 35px rgba(198, 102, 161, 0.25);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
    background-image: linear-gradient(135deg, rgba(245, 211, 229, 0.2) 0%, rgba(255, 246, 251, 0.1) 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #6c2e81;
}

.site-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn-primary {
    background: var(--btn-gradient);
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    box-shadow: 0 4px 15px rgba(198, 102, 161, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(to right, #d15b97, #9e4c8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 102, 161, 0.4);
    color: white;
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(158, 76, 138, 0.3);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: var(--header-bg) !important;
    box-shadow: 0 2px 15px rgba(198, 102, 161, 0.2);
    padding: 15px 0;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: white !important;
    transition: all 0.3s;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 20px;
}

.nav-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background-color: white;
    background-image: linear-gradient(135deg, rgba(245, 211, 229, 0.5) 0%, rgba(255, 246, 251, 0.8) 100%);
    padding: 120px 0;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(198, 102, 161, 0.1);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f5d3e5' fill-opacity='0.3' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none; /* Add this line */
}

.hero-heading {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.hero-heading::after {
    content: "✨";
    position: absolute;
    right: -30px;
    top: 0;
    font-size: 2rem;
}

.hero-subheading {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Cards */
.card {
    border: none;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Soul Card Display */
.soul-card {
    margin-bottom: 4rem;
    padding: 0 15px;
}

.soul-card-title {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    display: inline-block;
}

.soul-card-title::before,
.soul-card-title::after {
    content: "❦";
    font-size: 1.5rem;
    color: var(--gold);
    position: absolute;
    opacity: 0.7;
}

.soul-card-title::before {
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.soul-card-title::after {
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.soul-card-description {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-style: italic;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(198, 102, 161, 0.25);
    border: 5px solid white;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Share buttons */
.share-section {
    margin: 2.5rem 0;
    text-align: center;
}

.share-section h4 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.share-section h4::before,
.share-section h4::after {
    content: "—";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-weight: 300;
}

.share-section h4::before {
    left: -30px;
}

.share-section h4::after {
    right: -30px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--dark-text);
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
    margin: 0 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(198, 102, 161, 0.2);
}

.share-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(158, 76, 138, 0.3);
}

#whatsappShare:hover {
    background-color: #25D366;
}

#telegramShare:hover {
    background-color: #0088cc;
}

#facebookShare:hover {
    background-color: #3b5998;
}

#twitterShare:hover {
    background-color: #1DA1F2;
}

#emailShare:hover {
    background-color: #ea4335;
}

#copyLink:hover {
    background-color: #6c757d;
}

/* Subscribe Section (directly on page) */
.subscribe-section {
    margin: 4rem 0 2rem;
}

.subscribe-card {
    background: linear-gradient(135deg, rgba(245, 211, 229, 0.4) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(198, 102, 161, 0.2);
    overflow: hidden;
    position: relative;
}

.subscribe-card::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 211, 229, 0.7) 0%, rgba(245, 211, 229, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.subscribe-card::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 211, 229, 0.7) 0%, rgba(245, 211, 229, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.subscribe-card .card-body {
    position: relative;
    z-index: 1;
    padding: 2.5rem !important;
}

.subscribe-card h4 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.subscribe-card h4::after {
    content: "💌";
    position: absolute;
    right: -35px;
    top: -5px;
    font-size: 1.2rem;
}

.subscribe-card p {
    color: var(--light-text);
    font-size: 1.1rem;
}

.subscribe-card .form-control {
    border: 2px solid rgba(198, 102, 161, 0.2);
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1rem;
    transition: all 0.3s;
}

.subscribe-card .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(198, 102, 161, 0.2);
}

.subscribe-card .form-control::placeholder {
    color: #bba6bb;
    font-style: italic;
}

.subscribe-btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--btn-gradient);
    border: none;
    box-shadow: 0 5px 15px rgba(198, 102, 161, 0.3);
    transition: all 0.3s;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 102, 161, 0.4);
    background: linear-gradient(to right, #c866a1, #9a5889);
}

.subscribe-card .form-text {
    color: #bba6bb;
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer */
footer {
    background: var(--footer-bg);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, white, rgba(198, 102, 161, 0.5), white);
}

.footer-link {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    opacity: 0.9;
}

.footer-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

.footer-link:hover::after {
    width: 100%;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #6c2e81;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    margin: 0 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Card Grid */
.card-grid {
    margin-bottom: 3rem;
}

.card-grid .card {
    height: 100%;
    transition: all 0.4s ease;
}

.card-grid .card-img-top {
    height: 180px;
    object-fit: cover;
}

.card-grid .card-title {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.card-grid .card-text {
    font-size: 0.95rem;
    color: var(--light-text);
}

.card-grid .card-footer {
    padding-top: 1rem;
}

/* Stats badge */
.stats-badge {
    font-size: 0.85rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    background-color: rgba(245, 211, 229, 0.3);
    color: var(--dark-text);
    display: inline-flex;
    align-items: center;
    margin-right: 0.75rem;
    transition: all 0.3s;
}

.stats-badge:hover {
    background-color: rgba(245, 211, 229, 0.5);
    transform: translateY(-2px);
}

.stats-badge i {
    margin-right: 0.3rem;
    color: var(--secondary-color);
}

/* Modal Customization */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    background-color: var(--light-bg);
}

.modal-header {
    border-bottom: 1px solid rgba(198, 102, 161, 0.2);
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid rgba(198, 102, 161, 0.2);
    padding: 1.5rem;
}

.modal-title {
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(198, 102, 161, 0.25);
}

/* Form elements */
.form-control {
    border-radius: 15px;
    padding: 10px 20px;
    border: 2px solid rgba(198, 102, 161, 0.2);
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(198, 102, 161, 0.2);
}

/* Alerts */
.alert {
    border-radius: 15px;
    border: none;
    padding: 15px 20px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Floating Subscribe Form */
.floating-subscribe-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    box-shadow: 0 5px 20px rgba(198, 102, 161, 0.3);
    border-radius: 50px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.floating-subscribe-container:hover {
    box-shadow: 0 8px 25px rgba(198, 102, 161, 0.4);
    transform: translateX(-50%) translateY(-3px);
}

.floating-subscribe-input {
    border: none;
    padding: 12px 20px;
    min-width: 250px;
    border-radius: 50px 0 0 50px;
    font-size: 0.95rem;
}

.floating-subscribe-input:focus {
    outline: none;
    box-shadow: none;
}

.floating-subscribe-btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--btn-gradient);
    border: none;
    color: white;
    transition: all 0.3s;
}

.floating-subscribe-btn:hover {
    background: linear-gradient(to right, #c866a1, #9a5889);
}

#floatingSubscribeMessage {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 1001;
}

#floatingSubscribeMessage .alert {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 8px 15px;
    display: inline-block;
    margin: 0 auto;
    max-width: 90%;
}

/* Tags styling */
.tags-container {
    margin: 1.5rem 0;
}

.tag-badge {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px 8px 0;
    background-color: rgba(198, 102, 161, 0.1);
    color: var(--secondary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(198, 102, 161, 0.2);
}

.tag-link {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 8px 12px 0;
    background-color: rgba(198, 102, 161, 0.1);
    color: var(--secondary-color);
    border-radius: 30px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 102, 161, 0.2);
}

.tag-link .tag-count {
    font-size: 0.85em;
    opacity: 0.8;
}

.tags-cloud {
    padding: 20px;
    background-color: rgba(245, 211, 229, 0.1);
    border-radius: 15px;
    text-align: center;
}

.popular-tag {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 18px;
}

.tag-title {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.tag-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    bottom: 0;
    left: 20%;
}

/* Additional feminine touches */
h2 {
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(198, 102, 161, 0.1), rgba(198, 102, 161, 0.8), rgba(198, 102, 161, 0.1));
}

/* Forum-specific styles */
.forum-container {
    margin-bottom: 3rem;
}

.forum-title {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.forum-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.forum-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: none;
    margin-bottom: 2rem;
}

.forum-card-header {
    background-color: rgba(245, 211, 229, 0.2);
    border-bottom: 1px solid rgba(198, 102, 161, 0.1);
    padding: 1rem 1.25rem;
}

.forum-card .list-group-item {
    border-left: none;
    border-right: none;
    border-color: rgba(198, 102, 161, 0.1);
    padding: 1rem 1.25rem;
    transition: all 0.2s ease;
}

.forum-card .list-group-item:hover {
    background-color: rgba(245, 211, 229, 0.1);
}

.forum-card .list-group-item:last-child {
    border-bottom: none;
}

.forum-post-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: none;
    margin-bottom: 2rem;
}

/* Thread and post styles */
.thread-title {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.thread-meta {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.thread-stat {
    display: inline-block;
    margin-right: 1.5rem;
    font-size: 0.9rem;
}

.post-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: none;
}

.first-post {
    border-left: 4px solid var(--primary-color);
}

.post-header {
    background-color: rgba(245, 211, 229, 0.2);
    border-bottom: 1px solid rgba(198, 102, 161, 0.1);
    padding: 0.75rem 1.25rem;
}

.post-date {
    font-size: 0.85rem;
    color: var(--light-text);
}

.post-content {
    font-size: 1rem;
    line-height: 1.7;
}

.reply-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: none;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light-text);
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--light-text);
}

.bg-primary {

    background-color: var(--dark-text) !important;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.6rem;
    transform: translate(25%, -25%);
}

/* Floating Subscribe Form */
.floating-subscribe-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(198, 102, 161, 0.3);
    border-radius: 50px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    width: auto;
    min-width: 300px;
}

.floating-subscribe-container:hover {
    box-shadow: 0 8px 25px rgba(198, 102, 161, 0.4);
    transform: translateX(-50%) translateY(-3px);
}

.floating-subscribe-input {
    border: none;
    padding: 12px 20px;
    min-width: 250px;
    border-radius: 50px 0 0 50px;
    font-size: 0.95rem;
}

.floating-subscribe-input:focus {
    outline: none;
    box-shadow: none;
}

.floating-subscribe-btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--btn-gradient);
    border: none;
    color: white;
    transition: all 0.3s;
}

.floating-subscribe-btn:hover {
    background: linear-gradient(to right, #c866a1, #9a5889);
}

#floatingSubscribeMessage {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 1001;
}

#floatingSubscribeMessage .alert {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 8px 15px;
    display: inline-block;
    margin: 0 auto;
    max-width: 90%;
}

/* Subscribe Success Container */
.subscribe-success {
    background-color: rgba(40, 167, 69, 0.1);
    padding: 12px 20px;
    text-align: center;
    color: #28a745;
    width: 100%;
    border-left: 4px solid #28a745;
}

.subscribe-success i {
    font-size: 1.2rem;
}

#passwordChangeContainer {
    display: flex;
    flex-direction: column;
}

#changePasswordBtn {
    background: var(--secondary-color);
    color: white;
    border: none;
    transition: all 0.3s;
}

#changePasswordBtn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Improved Floating Subscribe Form */
.floating-subscribe-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(198, 102, 161, 0.3);
    border-radius: 50px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    width: auto;
    min-width: 320px;
    max-width: 90%;
}

.floating-subscribe-container:hover {
    box-shadow: 0 8px 25px rgba(198, 102, 161, 0.4);
    transform: translateX(-50%) translateY(-3px);
}

.floating-subscribe-input {
    border: none;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
    font-size: 0.95rem;
    background-color: rgba(245, 211, 229, 0.1);
    width: 100%;
}

.floating-subscribe-input:focus {
    outline: none;
    box-shadow: none;
    background-color: rgba(245, 211, 229, 0.2);
}

.floating-subscribe-btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--btn-gradient);
    border: none;
    color: white;
    transition: all 0.3s;
    white-space: nowrap;
}

.floating-subscribe-btn:hover {
    background: linear-gradient(to right, #c866a1, #9a5889);
    color: white;
}

#floatingSubscribeMessage {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 1001;
}

#floatingSubscribeMessage .alert {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 8px 15px;
    display: inline-block;
    margin: 0 auto;
    max-width: 90%;
}

/* Subscribe Success Container */
.subscribe-success {
    background-color: rgba(40, 167, 69, 0.1);
    padding: 15px 20px;
    text-align: center;
    color: #28a745;
    width: 100%;
    border-left: 4px solid #28a745;
}

.subscribe-success i {
    font-size: 1.2rem;
}

#passwordChangeContainer {
    padding: 10px 0;
}

#changePasswordBtn {
    background: var(--secondary-color);
    color: white;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
}

#changePasswordBtn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

#passwordUpdateMessage {
    font-size: 0.85rem;
    padding: 3px 0;
}

/* Gallery styles */
.gallery-thumbnail {
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(198, 102, 161, 0.3);
}

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

.main-photo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
}

.lightbox-modal .modal-content {
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-img {
    max-height: 85vh;
    margin: 0 auto;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1050;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    text-align: center;
}

.model-card a{
text-decoration:none;
color: #574e44;
}