/* =========================
   Root Variables & Base
========================= */
:root {
    --blue: #67addb;
    --background: #fff;
    --button-hover: #808080;
    --text: #222;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
}

body {
    background: var(--background);
    color: var(--text);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h2 {
    color: #000;
    margin-top: 50px;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
    font-size: 2em;
}

ul {
    background: var(--background);
    padding: 16px;
    border-radius: 8px;
    list-style: none;
}

li {
    margin-bottom: 8px;
    color: var(--text);
}

/* =========================
   Header & Navigation
========================= */
.site-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    color: #000;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1000;
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: clamp(20px, 5vw, 80px);
    padding-right: clamp(20px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin: 0;
    color: #000;
    font-size: 2em;
    font-weight: bold;
}

/* Nav (main + general) */
.main-nav a,
nav a {
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.main-nav {
    display: flex;
    gap: 12px;
}

.main-nav a {
    color: #000;
    background: rgba(255,255,255,0.5);
    border: 2px solid #000;
    margin: 0 8px;
    padding: 8px 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.main-nav a:hover {
    background: #ffffff;
    color: #67addb;
    border: 2px solid #67addb;
}

nav a {
    color: var(--text);
    background: var(--background);
    margin: 0 10px;
    padding: 8px 16px;
    border-radius: 4px;
}

nav a:hover {
    background: var(--button-hover);
}

/* Hamburger Button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}

/* Responsive: mobile menu */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: clamp(20px, 5vw, 80px);
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid #000;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        padding: 10px;
        z-index: 999;
    }

    .main-nav a {
        margin: 6px 0;
        width: 180px;
        text-align: center;
    }

    .main-nav.show {
        display: flex;
    }
}

/* Secondary header (hero-style) */
header {
    background: var(--blue);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

header h1 {
    margin: 0 0 10px;
    color: var(--text);
}


/* =========================
   Main Layout
========================= */
main {
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 clamp(20px, 5vw, 80px);
    box-sizing: border-box;
}

section {
    margin-bottom: 40px;
}

/* =========================
   Images & Media
========================= */
img {
    border: 3px solid #000000;
}

.photo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
}
.photo-row img {
    flex: 1 1 45%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-sizing: border-box;
}

/* Slideshow */
.slideshow-container {
    position: relative;
    text-align: center;
    margin: 0 auto;
    max-width: 1325px;
    max-height: 886px;
}

.slide {
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
    max-width: 1325px;
    max-height: 886px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    color: #000;
    background: #ffffff;
    border: 2px solid #000;
    border-radius: 50%;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    z-index: 2;
    transition: color 0.2s, background 0.2s;
    padding: 0;
}
.prev:hover, .next:hover {
    background: #000;
    color: #fff;
}
.prev { left: 10px; }
.next { right: 10px; }

/* =========================
   Forms & Buttons
========================= */
form label {
    display: block;
    margin: 12px 0 4px;
    color: var(--text);
}

input, textarea, button {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--blue);
    border-radius: 4px;
    font-size: 1em;
}

button {
    background: var(--blue);
    color: var(--text);
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}
button:hover {
    background: var(--button-hover);
}

/* =========================
   Pricing & Packages
========================= */
.pricing-title {
    text-align: center;
    font-size: 2em;
    margin: 2em 0 1em;
    font-weight: bold;
}

.pricing-grid,
.pricing-3x3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    margin-bottom: 3em;
}
@media (min-width: 700px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
    .pricing-3x3 { grid-template-columns: repeat(3, 1fr); }
}

.pricing-col {
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: stretch;
}
.pricing-col h3 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 1em;
    font-family: serif;
}

/* Shared card styles */
.package-card,
.package-box,
.addons-box {
    background: #ffffff;
    border: 2px solid #000;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2em 1.5em 1em;
    position: relative;
    transition: box-shadow 0.2s;
}

.package-card:hover,
.package-box:hover,
.addons-box:hover {
    box-shadow: 0 4px 16px rgba(148,180,201,0.18);
}

/* Special variations */
.package-card {
    background: #fffbe6;
    border: 1px solid #ffe066;
}
.popular { border: 2px solid #ffd700; }

.package-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   /* stack items from top */
    align-items: stretch;          /* full width */
    background: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2em 1.5em 1.5em;
    position: relative;
    transition: box-shadow 0.2s;
    flex: 1 1 0;                   /* ensures equal height in grid */
}
.addons-box {
    margin: 40px auto 0;
    max-width: 700px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

/* Highlighted "Best Value" style */
.package-box.best-value {
  border-color: #67addb; /* blue border */
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
}

/* Badge bubble */
.best-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #67addb;
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  white-space: nowrap;
}

/* Shared header */
.package-header {
    display: flex;
    align-items: center;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 1em;
    flex-direction: column;
    margin-bottom: 1em;
    justify-content: center;
    text-align: center;
}

.package-name {
    text-align: center;
    font-weight: bold;
    font-size: 1.4em;
    color: #000000;
}
.package-price {
    text-align: center;
    color: #67addb;
    font-size: 1.4em;
    min-width: 90px;
    flex: 1;
}

/* Features / lists */
.package-features,
.package-box ul,
.addons-box ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    margin-top: -1em;      /* consistent spacing from header */
    padding-left: 1.2em;  /* bullets not flush to edge */
}

.package-box li {
    position: relative;
    padding-left: 1.2em;
}

.package-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #67addb;
    font-weight: bold;
}

.addons-box li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.6;
}

.addons-box li strong {
    margin-left: 0;
    white-space: nowrap;
    text-align: right;
    color: #67addb;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.package-features li::before {
    content: "✔";
    color: #94b4c9;
    font-weight: bold;
    margin-right: 0.5em;
}

/* Badges */
.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: var(--text);
    padding: 0.3em 1.2em;
    border-radius: 999px;
    font-size: 0.95em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    letter-spacing: 0.5px;
}

.astrix {
    text-align: center;
    font-size: 1em;
    margin-top: 5em;
    color: #000000;
}

/* Gear */
.camera-gear {
    text-align: center;
    margin-bottom: 2em;
}

.gear-row {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
    align-items: flex-start;
}

.gear-item {
    max-width: 250px;
    text-align: center;
}

.gear-item img {
    width: 250px;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    border: 2px solid #ffffff;
}

/* =========================
   about us page
========================= */

#about {
    background: #67addb; /* light grey */
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 1em 1.5em 1.5em 1.5em;
    margin: 40px auto 0 auto;
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
    padding-left: clamp(20px, 5vw, 80px);
    padding-right: clamp(20px, 5vw, 80px);
}

.about-text h2 {
    color: #fff;
}

.about-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    background: #67addb;
    border-radius: 12px;
    color: #ffffff;
    text-shadow: #222 1px 1px 2px;
}

.aboutus-row {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
    align-items: flex-start;
}

.aboutus-item {
    max-width: 250px;
    text-align: center;
}

.aboutus-item img {
    max-width: 450px;
    max-height: 300px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    border: 2px solid #ffffff;
}

/* =========================
   Footer
========================= */
.site-footer {
    background: #111;
    color: #eee;
    padding: 30px 20px;
    text-align: center;
    margin-top: auto;
}

.site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer .social-links {
    margin: 15px 0;
}

.site-footer .social-links a {
    color: #67addb;
    margin: 0 12px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.site-footer .social-links a:hover {
    color: #fff;
}

.site-footer .footer-note {
    margin-top: 10px;
    font-size: 0.9em;
    color: #bbb;
}
