/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background-color: #0f0f12;
    color: #e5e5e5;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* TOPBAR */
.top-bar {
    background: #000000;
    border-bottom: 1px solid #1f1f2a;
}

.top-inner {
    display: flex;
    justify-content: space-between; /* venstre / center / højre */
    align-items: stretch;           /* alle tre kolonner samme højde */
    height: 175px;                  /* fast header-højde */
    gap: 20px;
    padding: 20px 0;
    box-sizing: border-box;
}

/* Header venstre / center / højre */
.header-left,
.header-center,
.header-right {
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertikalt centreret */
}

.header-left {
    align-items: center;
}

.header-left .logo {
    width: auto;
    max-width: 550px;
    height: 175px;
    display: block;
}

.header-center {
    align-items: center;
    text-align: center;
}

/* RIGHT MENU */
.header-right {
    display: flex;
    flex-direction: column;    /* vertical stack */
    justify-content: center;   /* vertical align */
    align-items: flex-end;     /* menu right-aligned */
    gap: 5px;
}

/* MENU BUTTONS */
.header-link {
    display: flex;
    justify-content: flex-end;    /* text aligned right */
    align-items: center;
    font-size: 0.95rem;
    color: #cfcfd6;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    padding: 6px 6px;           /* button padding */
    border-radius: 6px;
    background-color: rgba(255,255,255,0.05);
    transition: transform 0.2s, background 0.2s, color 0.2s;

    width: 120px;                 /* shorter buttons */
    box-sizing: border-box;
}

/* ICON ON LEFT */
.header-link::before {
    content: '';                  /* optional icon space, or use HTML icon */
    display: inline-block;
    width: 20px;                  /* reserve space for icon */
    margin-right: 8px;
}

/* HOVER EFFECT */
.header-link:hover {
    transform: scale(1.05);
    background-color: rgba(255,255,255,0.05);
    color: #e879f9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .top-inner {
        flex-direction: column;
        height: auto;
        align-items: center;
    }

    .header-right {
        align-items: center;
        width: 100%;
    }

.header-link {
        width: 180px; /* slightly wider on mobile */
        justify-content: center;
    }
}

/* PROFILE CARDS */
.section.profiles {
    padding: 40px 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card.profile-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #1b1b24, #12121a);
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.image-frame {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    background: #0b0b10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.silhouette {
    width: 120px;
    height: 180px;
    border-radius: 60px 60px 40px 40px;
    background: linear-gradient(180deg, #3a3a4a, #1a1a24);
    opacity: 0.8;
}

.profile-name {
    margin-top: 15px;
    margin-bottom: 8px;
    color: #e879f9;
}

.description {
    color: #cfcfd6;
    line-height: 1.5;
}

/* SERVICES BOX */
.services-box {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(147,51,234,0.3);
    background: rgba(147, 51, 234, 0.1);
}

.services-box h4 {
    font-size: 1rem;
    color: #c084fc;
    margin-bottom: 10px;
    padding-bottom: 6px;
    position: relative;
}

.services-box h4::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(200,200,200,0.2);
    margin-top: 6px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.services-list li {
    padding: 4px 0;
    font-size: 0.95rem;
}

/* Buttons */
.btn-visit-full {
    display: block;
    width: 100%;
    padding: 10px 0;
    margin-top: 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: transform 0.2s, background 0.2s;
}

.btn-visit-full:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* CONTACT FORM */
.contact-section,
.contact-section-full .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 0;
    align-items: start;
}

.contact-info h2,
.contact-card h2 {
    margin-top: -10px;       /* remove extra space above */
    margin-bottom: 5; /* adjust spacing below the title */
    text-align: center;
    color: #cfcfd6;
}

.contact-card p,
.contact-info p {
    margin-bottom: 1em;
    margin-bottom: 20px;
    color: #cfcfd6;
    font-size: 0.95rem;
}

.contact-card form {
    display: grid;
    gap: 12px;
}

.contact-card input,
.contact-card textarea,
.signup-form input,
.signup-form textarea {
    background-color: #0f0f16;
    border: 1px solid #2a2a3a;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
}

.signup-form {
    display: grid;
    gap: 14px;
}

.contact-card .btn-visit-full {
    margin-top: 15px;
}

.contact-info,
.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* top-align content */
    box-sizing: border-box;
}

.contact-card {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147,51,234,0.3);
    border-radius: 12px;
}

.contact-info h2,
.contact-card h2 {
    margin-top: 0;         /* reset top margin */
    margin-bottom: 10px;   /* consistent spacing */
    color: #cfcfd6;
    text-align: center;
}

/* SECTION HIGHLIGHT */
.section.highlight {
    background-color: #16161d;
    padding: 60px 0;
}

.section.highlight .card {
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    background: linear-gradient(180deg, #1b1b24, #12121a);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, #9333ea, #db2777);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* ========================================
   CONTACT SECTION FULL WIDTH
======================================== */
.contact-section-full {
    width: 100%;
    background-color: #0b0b10;
    padding: 20px 0 20px 0;
}

.contact-section-full .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* LEFT INFO - plain text */
.contact-info {
    padding: 20px; /* same padding as contact card for headline alignment */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* top-align content */
    background-color: transparent;
    border: 1px solid rgba(147,51,234,0.3);
    border-radius: 8px;
    color: #cfcfd6;
    flex-direction: column;
    line-height: 1.5;
    background: rgba(147, 51, 234, 0.1);
 /*   background-color: rgba(20,10,40,0.4); */
}

.contact-info h2 {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
    color: #cfcfd6;
}

/* RIGHT CONTACT CARD */
.contact-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147,51,234,0.3);
    border-radius: 12px;
    gap: 12px;
}


.contact-card h2 {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
    color: #cfcfd6;
}

.contact-card p {
    margin-bottom: 20px;
    color: #cfcfd6;
    font-size: 0.95rem;
}

/* PROFILE LOGIN BUTTON inside contact */
.btn-profile-login {
    display: block;           /* needed for auto margin centering */
    margin: 15px auto 0 auto; /* top margin + centered horizontally */
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    width: 180px;
    max-width: 80%;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

/* FOOTER */
.footer {
    background-color: #0f0f12;
    text-align: center;
    padding: 25px;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* EXCLUSIVE GALLERY */
.exclusive-section {
    padding: 20px 0;
    background-color: #000000;
}

.exclusive-intro {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.gallery-teaser {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.gallery-preview {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #3b2a55;
}

.gallery-silhouette {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 40%, #3a2a55 0%, #1a0f25 60%),
        linear-gradient(180deg,#2b1c40,#12081a);
    filter: blur(6px);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,5,20,0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.gallery-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.gallery-overlay p {
    max-width: 450px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* PROFILE INDEX GRID */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.advertisers-section {
    background-color: #16161d; /* dark but distinct */
    padding: 30px 0;
}

.advertisers-section h3 {
    color: #e879f9;
    text-align: center;
    margin-bottom: 20px;
}

.advertisers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.advertisers a img {
    max-height: 300px;
    object-fit: contain;
    transition: transform 0.2s;
}

.advertisers a:hover img {
    transform: scale(1.1);
}

.btn-profile-login {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    width: 180px;            /* fixed width */
    max-width: 80%;           /* responsive fallback */
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    margin-top: 15px;
}

.btn-profile-login:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cards,
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE LOGO ADJUST */
@media (max-width: 768px) {
    .header-left .logo {
        max-width: 225px; /* shrink logo */
        height: auto;     /* keep aspect ratio */
    }
}

@media (max-width: 768px) {
    .contact-section-full .container {
        display: grid;
        grid-template-columns: 1fr; /* stack cards */
        gap: 20px; /* spacing between stacked cards */
    }
}
