/*====================================================
  EVENTS PAGE
  Reuses the shared header + fonts from style.css.
  Only page-specific styles live here.
====================================================*/

.events-body {
    margin: 0;
    background: #050505;
}

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

.ev-hero {
    height: 862px;
    display: flex;
    flex-direction: column;
    /* Supplied smoke background image, covering the whole hero */
    background-image: url("../assets/image-08.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #050505;
}

/* Content area above the bottom strip */
.ev-hero-content {
    flex: 1;
    display: flex;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: var(--header-height) 40px 0;
    box-sizing: border-box;
    min-height: 0;
}

/* Left 48% / right 52% */
.ev-left {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    align-items: flex-end;          /* portrait bottom-aligned */
    padding-left: 10px;
    box-sizing: border-box;
}

.ev-left img {
    display: block;
    width: auto;
    height: 640px;                  /* keep aspect ratio, no crop/stretch */
    max-width: none;
}

.ev-right {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;        /* vertically centered */
    align-items: flex-end;          /* aligned toward the right */
    text-align: right;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Title */
.ev-title {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 92px;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
}

/* Button */
.ev-buttons {
    margin-top: 28px;
    display: flex;
    justify-content: flex-end;
}

.ev-btn {
    display: inline-block;
    background: #ffffff;
    color: #111111;
    padding: 14px 34px;
    border: none;
    border-radius: 4px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
}


/*====================================================
  BOTTOM STRIP
====================================================*/

.ev-strip {
    height: 90px;
    display: flex;
    align-items: center;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ev-strip-inner {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ev-strip span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}


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

/* Tablet - portrait above title */
@media (max-width: 1000px) {
    .ev-hero { height: auto; }
    .ev-hero-content {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: calc(var(--header-height) + 40px) 20px 40px;
    }
    .ev-left, .ev-right {
        flex: 1 1 auto;
        max-width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
    }
    .ev-left img { width: auto; max-width: 100%; height: auto; }
    .ev-buttons { justify-content: center; }
    .ev-title { font-size: 84px; }
    .ev-strip-inner { flex-wrap: wrap; justify-content: center; gap: 10px 22px; }
}

/* Mobile */
@media (max-width: 600px) {
    .ev-title { font-size: 60px; }
    .ev-strip { height: auto; padding: 16px 0; }
}


/*====================================================
  SELECTED ENGAGEMENTS SECTION
====================================================*/

.se-section {
    /* Same white patterned background asset already used on the site */
    background: url("../assets/image-09.jpg") center center / cover no-repeat;
    background-color: #f1f1f1;
    padding: 96px 40px 147px;
    box-sizing: border-box;
}

.se-container {
    max-width: 1450px;
    margin: 0 auto;
}

.se-head-title {
    margin: 0 0 14px;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    text-transform: uppercase;
    color: #f58220;
}

.se-head-sub {
    max-width: 900px;
    margin: 0 auto 44px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #444444;
}

/* 2-column grid */
.se-grid {
    display: grid;
    grid-template-columns: repeat(2, 569px);
    justify-content: center;
    gap: 58px 40px;
}

/* Card - 8px border wraps the whole card, image 553 fits inside */
.se-card {
    width: 569px;
    box-sizing: border-box;
    background: #ffffff;
    border: 8px solid #2e2e2e;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.se-img {
    line-height: 0;
}

.se-img img {
    display: block;
    width: 100%;                /* 553px inside the 8px border */
    height: 295px;
    object-fit: cover;          /* fill the box, no distortion */
}

/* Feature cards - square image */
.se-feature .se-img img {
    height: 553px;
}

.se-body {
    padding: 24px;
}

/* Tags */
.se-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.se-tag {
    background: #ffffff;
    border: 1px solid #222222;
    padding: 8px 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #111111;
    line-height: 1;
}

/* Title */
.se-title {
    margin: 18px 0 8px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
    color: #111111;
}

/* Description */
.se-desc {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: #555555;
}

/* Responsive */
@media (max-width: 1220px) {
    .se-grid { grid-template-columns: minmax(0, 569px); }
    .se-card { width: 100%; max-width: 569px; }
}

@media (max-width: 600px) {
    .se-section { padding: 50px 18px 60px; }
    .se-head-title { font-size: 40px; }
    .se-img img, .se-feature .se-img img { height: auto; }
}


/*====================================================
  FROM THE STAGE / IN CONVERSATION SECTION
====================================================*/

.fs-section {
    /* Transparent -> shows the page's existing dark background (blends) */
    background: transparent;
    padding: 80px 40px 90px;
    box-sizing: border-box;
}

.fs-container {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.fs-col.left  { flex: 1 1 43%; min-width: 0; }
.fs-col.right { flex: 1 1 57%; min-width: 0; }

/* Column heading */
.fs-col-title {
    margin: 0 0 18px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #f58220;
    line-height: 1;
}

.fs-head-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
}

/* Item */
.fs-item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 13px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.fs-item:last-child { margin-bottom: 0; }

.fs-item-text { min-width: 0; }

.fs-title {
    margin: 0 0 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.35;
    color: #ffffff;
}

.fs-desc {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #d2d2d2;
}

/* Watch Now button */
.fs-watch {
    flex: 0 0 auto;
    align-self: flex-end;
    background: #f58220;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 2px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1000px) {
    .fs-container { flex-direction: column; gap: 40px; }
    .fs-col.left, .fs-col.right { flex: 1 1 auto; max-width: 100%; }
}

@media (max-width: 600px) {
    .fs-section { padding: 50px 20px 60px; }
    .fs-item { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/*====================================================
  ALSO SPOKE, LECTURED OR JUDGED AT SECTION
====================================================*/

.also-section {
    /* Same white patterned background asset already used on the site */
    background: url("../assets/image-09.jpg") center center / cover no-repeat;
    background-color: #f1f1f1;
    padding: 120px 40px;
    box-sizing: border-box;
}

.also-container {
    max-width: 1450px;
    margin: 0 auto;
}

/* Heading */
.also-title-head {
    margin: 0 0 10px;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 47px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #f58220;
    line-height: 1;
}

.also-sub-head {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #777777;
}

.also-topdivider {
    width: 100%;
    height: 2px;
    background: #444444;
    margin-top: 28px;
}

/* Info table */
.also-table {
    margin-bottom: 40px;
}

.also-row {
    display: flex;
    padding: 18px 0;
    border-bottom: 1px solid #cfcfcf;
}

.also-label {
    flex: 0 0 24%;
    max-width: 24%;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #666666;
    line-height: 1.35;
}

.also-content {
    flex: 1 1 76%;
    min-width: 0;
}

.also-title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.35;
    color: #111111;
}

.also-sub {
    margin: 6px 0 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #888888;
}

/* Directory cards - two equal columns */
.also-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.dir-card {
    background: #3b3b3b;
    border-radius: 0;
    padding: 22px;
    box-sizing: border-box;
}

.dir-entry {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.dir-entry:first-child { padding-top: 0; }
.dir-entry:last-child  { padding-bottom: 0; border-bottom: none; }

.dir-name {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    line-height: 1.2;
}

.dir-desc {
    margin: 2px 0 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #dddddd;
    line-height: 1.4;
}

.dir-link {
    display: inline-block;
    margin-top: 6px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #b7b7b7;
    text-decoration: underline;
    word-break: break-all;
}

/* Responsive */
@media (max-width: 900px) {
    .also-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .also-section { padding: 50px 20px; }
    .also-title-head { font-size: 38px; }
    .also-row { flex-direction: column; gap: 6px; }
    .also-label, .also-content { flex: 1 1 auto; max-width: 100%; }
}


/*====================================================
  PUT A DATE ON IT SECTION
====================================================*/

.pd-section {
    /* Transparent -> shows the page's existing dark background (blends) */
    background: transparent;
    padding: 55px 40px 62px;
    box-sizing: border-box;
}

.pd-container {
    max-width: 1450px;
    margin: 0 auto;
}

.pd-title {
    margin: 0 0 14px;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 73px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
}

.pd-sub {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #bdbdbd;
}

/* Form - slightly narrower than the reference for balance */
.pd-form {
    max-width: 1180px;
    margin: 0 auto;
}

.pd-row {
    margin-bottom: 18px;
}

.pd-two {
    display: flex;
    gap: 30px;
}

.pd-field {
    width: 100%;
    height: 58px;
    box-sizing: border-box;
    padding: 0 24px;
    border: none;
    outline: none;
    border-radius: 10px;
    background: #d7d7d7;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #2f2f2f;
}

.pd-field::placeholder { color: #2f2f2f; }

/* Custom select */
.pd-select-wrap {
    position: relative;
}

.pd-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 52px;
    cursor: pointer;
}

.pd-arrow {
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    fill: none;
    stroke: #2f2f2f;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Textarea */
.pd-textarea {
    height: 150px;
    padding: 24px;
    background: #bebebe;
    line-height: 1.4;
    resize: none;
}

/* Button */
.pd-btn-wrap {
    text-align: center;
    margin-top: 26px;
}

.pd-btn {
    background: #ffffff;
    color: #111111;
    border: none;
    padding: 12px 34px;
    border-radius: 4px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1;
    transition: background 0.3s ease, color 0.3s ease;
}

.pd-btn:hover {
    background: #f58220;
    color: #ffffff;
}

/* Footnote */
.pd-note {
    margin: 18px 0 0;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #9f9f9f;
}

/* Responsive */
@media (max-width: 700px) {
    .pd-section { padding: 50px 20px 60px; }
    .pd-title { font-size: 42px; }
    .pd-two { flex-direction: column; gap: 18px; }
}


/*====================================================
  FOOTER (image variant)
====================================================*/

.ev-footer {
    display: flex;
    width: 100%;
    height: 473px;
    overflow: hidden;
}

/* LEFT : white patterned panel */
.ev-footer-left {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    background: url("../assets/image-09.jpg") center center / cover no-repeat;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 52px;
    padding-right: 40px;
}

.ef-name {
    margin: 0 0 34px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 1;
    text-transform: uppercase;
    color: #111111;
}

.ef-heading {
    margin: 0 0 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #111111;
}

.ef-follow { margin-top: 34px; }

/* Featured logos */
.ef-logos {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ef-livemint {
    display: block;
    height: 30px;
    width: auto;
}
.ef-livemint span { color: #f26c21; }

.ef-divider {
    width: 1px;
    height: 30px;
    background: #b0b0b0;
}

.ef-forbes {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.3px;
    color: #1a1a1a;
}

/* Social icons - 50px, 14px gap */
.ef-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ef-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;   /* image contains the circle */
}
.ef-social-link img { width: 100%; height: 100%; display: block; border-radius: 50%;
    transition: transform .2s ease;
}

.ef-social-link svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.ef-social-link:hover { transform: scale(1.08); }

/* RIGHT : full image */
.ev-footer-right {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ev-footer-right img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;          /* fills the half completely */
    background: #222;
}

/* Subtle black gradient only at the bottom */
.ef-img-grad {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    z-index: 1;
}

/* Overlay text - bottom-left */
.ef-overlay {
    position: absolute;
    left: 40px;
    bottom: 42px;
    z-index: 2;
}

.ef-otitle {
    margin: 0 0 6px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #f58220;
    line-height: 1.2;
}

.ef-osub {
    margin: 0 0 6px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.25;
}

.ef-ometa {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #e5e5e5;
    line-height: 1.3;
}

/* Responsive - stack on mobile */
@media (max-width: 800px) {
    .ev-footer { flex-direction: column; height: auto; }
    .ev-footer-left, .ev-footer-right { flex: 1 1 auto; width: 100%; }
    .ev-footer-left { padding: 44px 28px; }
    .ev-footer-right { height: auto; }
    .ev-footer-right img { height: auto; }
    .ef-name { font-size: 44px; }
}

/* Small phones — shrink footer social row so it never overflows */
@media (max-width: 480px) {
    .ef-social { gap: 10px; }
    .ef-social-link { width: 40px; height: 40px; }
    .ef-social-link svg { width: 21px; height: 21px; }
}
