/* =============== BASE STYLES =============== */

:root {
    /* Palette based on your reference image */
    --mint: #D96846;      /* warm accent */
    --lavender: #CDCBD6;  /* soft neutral accent */
    --pale-bg: #2596be;   /* main light background */
    --coral: #D96846;     /* primary accent (buttons, links) */
    --peach: #596235;     /* secondary accent (olive) */

    --bg-main: var(--pale-bg);
    --text-main: #2F3020;
    --text-muted: #6F7164;
    --card-bg: #FFFFFF;
    --border-soft: rgba(47, 48, 32, 0.12);
    --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-pill: 999px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #2596be;
    color: var(--text-main);
    line-height: 1.6;
}

/* Utility */

.container {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
}

.section {
    padding: 4.5rem 0;
    background: #dceffd;
}

.section-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
h2{
    color: #154051;
}


.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem auto;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #154051;
}

.section-header p {
    color: var(--text-muted);
}

/* =============== HEADER / NAV =============== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #82CCDD;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(47, 48, 32, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.75rem;
    gap: 1.5rem;
}

.logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #24708f, #add9eb); 
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #24708f, #add9eb); 
    transition: width 0.2s ease-out;
}

.main-nav a:hover::after {
    width: 100%;
}
.header-socials a i {
  color: #1f607a !important;   /* neon mint, matches your theme */
  font-size: 0.9rem;
}

.header-socials {
    display: flex;
    gap: 0.5rem;
}

.header-socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #1f607a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-decoration: none;
    color: #1f607a;
    
}

/* =============== HERO =============== */

.hero-section {
    padding: 5rem 0 4rem 0;
    background: #b6e0e2;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    margin: 0 0 0.75rem 0;
    color: #1f607a;
}

.hero-text .accent {
    background: linear-gradient(135deg, #2e91b8, #1f607a);  
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out, color 0.15s ease-out;
}

.primary-btn {
    background: linear-gradient(135deg, #70bddb, #99d0e6); 
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.ghost-btn {
    background: transparent;
    color: var(--text-main);
    border-color: rgba(47, 48, 32, 0.18);
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.resume-btn {
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.08); /* subtle glassy theme match */
    color: #2f3020;
    border-radius: 12px; /* rounded rectangle */
	font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    margin-left: 18px;
    letter-spacing: 0.3px;
}

.resume-btn:hover {
    background: #1f607a; /* premium green */
    border-color: #1f607a;
    color: #f4f5f0; /* readable on green */
    transform: translateY(-2px);
}

/* Hero photo */

.hero-photo {
    display: flex;
    justify-content: center;
}

.profile-photo-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: var(--shadow-soft);
    background: linear-gradient(135deg, #2e91b8, #1f607a);
    padding: 4px;
}

.profile-photo-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* =============== ABOUT =============== */

.about-section {
    background: #99d0e6;       
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.section-text p {
    margin-bottom: 0.9rem;
    color: var(--text-muted);
}

.section-highlight-card {
    background: #dcf0fe;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}

.section-highlight-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.highlight-list span {
    font-weight: 600;
}

/* =============== PORTFOLIO =============== */

.portfolio-section {
    background: #dceffd;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.portfolio-card {
    background: #c2e9fb;
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.7rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}

.portfolio-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.portfolio-card p {
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.portfolio-list {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0 0 0.9rem 0;
    color: var(--text-muted);
}

.card-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: #154051;
    font-weight: 500;
}

/* =============== SKILLS / RESUME =============== */

.skills-section {
    background: #c2e9fb;
}

.skills-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.skills-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

.skills-column {
    background: #D6EAF8;
    border-radius: var(--radius-md);
    padding: 1.2rem 1.3rem;
    border: 1px solid var(--border-soft);
}

.skills-column h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    color: #154051;
}

.skills-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.skills-column li {
    margin-bottom: 0.4rem;
}

/* Experience timeline */

.experience-timeline h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #154051;
}

.experience-timeline {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(47, 48, 32, 0.12);
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-dot {
    position: absolute;
    left: -1.1rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #24708f, #add9eb); 
    box-shadow: 0 0 0 4px rgba(205, 203, 214, 0.4);
}

.timeline-content h4 {
    margin: 0 0 0.25rem 0;
}

.timeline-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.timeline-content p {
    margin: 0;
    color: var(--text-muted);
}

.timeline-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* =============== CTA SECTION =============== */

.cta-section {
    background: linear-gradient(135deg, #85c6e0, #1f607a); 

    color: #2F3020;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-inner h2 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.cta-inner p {
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* =============== FOOTER =============== */

.site-footer {
    padding: 1.5rem 0 2rem 0;
    background: #c2e9fb;
    border-top: 1px solid rgba(47, 48, 32, 0.08);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =============== RESPONSIVE =============== */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-photo {
        order: -1;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .skills-layout {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-section {
        padding-top: 4rem;
		
    }

    .section {
        padding: 3.5rem 0;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Photography Page --- */

.photography-page {
  background: #E7E0C9;
  color: #2596be;
}

/* Hero */
.photo-hero {
  position: relative;
  padding: 8rem 1.5rem 6rem;
  text-align: center;
  background: radial-gradient(circle at top, #596235 0, #2F3020 55%, #1E1F16 100%);
}
.photo-hero-content h1 {
  font-size: 3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.photo-hero-content p {
  max-width: 640px;
  margin: 1rem auto 0;
  opacity: 0.85;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.section-subtitle {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 2.5rem;
}

/* Floating circles */
.photo-floating-section {
  padding: 4rem 1.5rem 3rem;
}
.floating-circles-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  height: 360px;
}
.floating-circle {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245, 243, 240, 0.25);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  animation: floatDrift 18s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}
.floating-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Positions for 6 circles */
.floating-circle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-circle:nth-child(2) { top: 0%; right: 15%; animation-delay: 2s; }
.floating-circle:nth-child(3) { top: 45%; left: 0%; animation-delay: 4s; }
.floating-circle:nth-child(4) { top: 55%; right: 5%; animation-delay: 6s; }
.floating-circle:nth-child(5) { top: 20%; left: 40%; animation-delay: 8s; }
.floating-circle:nth-child(6) { top: 60%; left: 55%; animation-delay: 10s; }

.floating-circle:hover {
  transform: scale(1.12);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.7);
  border-color: rgba(217, 104, 70, 0.9);
}

@keyframes floatDrift {
  0%   { transform: translate3d(0, 0, 0); }
  25%  { transform: translate3d(10px, -15px, 0); }
  50%  { transform: translate3d(-8px, 10px, 0); }
  75%  { transform: translate3d(12px, 8px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Filters */
.photo-gallery-section {
  padding: 3rem 1.5rem 4rem;
}
.photo-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 243, 240, 0.3);
  background: transparent;
  color: #2596be;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.filter-btn:hover {
  border-color: rgba(217, 104, 70, 0.9);
}
.filter-btn.active {
  background: linear-gradient(135deg, #D96846, #596235);
  color: #2596be;
  border-color: transparent;
}

/* Masonry grid */
.photo-masonry-grid {
  column-count: 3;
  column-gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.photo-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.photo-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* Hidden state for filtering */
.photo-item.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* Instagram CTA */
.photo-instagram-cta {
  padding: 1.5rem 1.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #CDCBD6 0%, #D96846 100%);
}
.photo-instagram-cta h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color:#154051;
}
.photo-instagram-cta p {
  max-width: 520px;
  margin: 0 auto 1.8rem;
  opacity: 0.85;
}
.btn-instagram {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 35%, #8134AF 70%, #515BD4 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn-instagram:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
  filter: brightness(1.05);
}

/* Lightbox */
.photo-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.photo-lightbox.active {
  display: flex;
}
.photo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.photo-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav.prev { left: -60px; }
.lightbox-nav.next { right: -60px; }
.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .floating-circles-wrapper {
    height: 320px;
  }
  .floating-circle {
    width: 110px;
    height: 110px;
  }
  .photo-masonry-grid {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .photo-hero {
    padding-top: 6rem;
  }
  .photo-hero-content h1 {
    font-size: 2.3rem;
  }
  .floating-circles-wrapper {
    height: 280px;
  }
  .photo-masonry-grid {
    column-count: 1;
  }
  .lightbox-nav.prev { left: -40px; }
  .lightbox-nav.next { right: -40px; }
}

.linkedin-cta-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}
.btn-linkedin {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #0A66C2, #004182);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.45);
  transition: all 0.25s ease;
}

.btn-linkedin:hover {
  background: linear-gradient(135deg, #0A66C2, #0A66C2);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.6);
}
