:root {
    --primary-color: #ecf0f1;
    --accent-color: #3498db;
    --text-color: #bdc3c7;
    --bg-gradient: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    /* "Dark Ocean" */
    --header-bg: #fff;
    --nav-text: #ecf0f1;
    --nav-hover: #3498db;
    --card-bg: rgba(15, 32, 39, 0.85);
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header & Nav Layout */
/* Header & Nav Layout */
.main-header {
    background-color: rgba(15, 32, 39, 0.95);
    /* Dark header */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px 20px;
    /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 60px;
    /* Reduced height */
    width: auto;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.main-nav a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: var(--nav-hover);
    color: #fff;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

/* Header Image (Banner) */
.header-image-container {
    width: 100%;
    margin-top: 0;
    /* Header is sticky */
    position: relative;
    border-bottom: 4px solid var(--accent-color);
    background-color: #0f2027;
}

.header-image {
    width: 100%;
    height: auto;
    /* Allow height to scale naturally */
    display: block;
    filter: brightness(0.9);
}

/* Content Area */
.content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 40px;
    text-align: center;
    min-height: 50vh;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Home Page Layout */
.home-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Aligned to center */
    gap: 40px;
    margin-top: 30px;
    text-align: left;
}

.home-text {
    flex: 1;
}

.home-text p.lead {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 25px;
    font-style: italic;
}

.home-text .highlight-warning {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 10px;
}

.home-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.home-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .gallery-grid.three-col {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 9;
    /* Uniform aspect ratio tiles */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.main-footer {
    background-color: rgba(15, 32, 39, 0.95);
    color: #bdc3c7;
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-columns,
    .split-layout-container {
        flex-direction: column;
        text-align: center;
    }

    .split-text-column {
        text-align: center;
        /* Center text on mobile */
    }
}

/* Shared Page Styles (Manifesto & Split Layout) */
.manifesto-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: #fff;
    /* Manifesto Style */
    padding: 30px;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    background: transparent;
    letter-spacing: 0.5px;
}

.manifesto-intro p:first-child {
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.split-layout-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    text-align: left;
}

.split-text-column {
    flex: 0 0 30%;
    /* Reduced to 30% */
    font-size: 1.15rem;
    line-height: 1.9;
}

.split-media-column {
    flex: 0 0 65%;
    /* Increased to ~70% (minus gap) */
}

/* Make the grid inside the right column responsive */
.split-media-column .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 0;
    /* Remove top margin in split layout */
}

.throne-link {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 600;
}

.throne-link a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.throne-link a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Follow Me Section */
.follow-me {
    text-align: center;
    /* Centered again */
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.follow-me h3 {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    /* Centered */
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-link:hover {
    border-color: var(--accent-color);
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

/* Vacation Page Role List */
.role-list {
    list-style-type: none;
    /* We will use custom pseudo-elements for better control, or just disc */
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
    /* Ensure left align inside the column */
}

.role-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.role-list li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.role-slave {
    color: #7f8c8d;
    /* Muted Grey for the slave role */
}

.role-mistress {
    color: var(--accent-color);
    /* Bright Accent for the mistress role */
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
    /* Subtle glow */
}

/* Vacation Page Typography Improvements */
.role-container {
    margin-bottom: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 15px;
}

.role-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #bdc3c7;
    margin-bottom: 5px;
    /* Tight spacing below label */
    opacity: 0.8;
}

.role-line {
    font-size: 1.15rem;
    /* Reduced font size */
    margin: 2px 0 2px 15px;
    /* Indented 15px */
    font-weight: 300;
    line-height: 1.4;
}

.role-line.large-text {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 10px;
    /* Slightly more space before the main line */
    color: var(--accent-color);
}