@font-face {
    font-family: 'Cormorant Garamond';
    src: url("../fonts/CormorantGaramond-VariableFont_wght.ttf") format('truetype');
    font-weight: 100 900;
}

:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --accent-color: #C01450;
    --font-main: 'Cormorant Garamond', serif;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: #A7B6D5;
    color: #fff;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: none;
    border-bottom-color: var(--accent-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.25s;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background-color: var(--bg-color);
    z-index: 100;
    border-bottom: 1px solid transparent;
}

.logo a {
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-color);
}

.main-nav a.active {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav-overlay ul {
    list-style: none;
    text-align: center;
}

.mobile-nav-overlay li {
    margin: 20px 0;
}

.mobile-nav-overlay a {
    font-size: 1.5rem;
    text-transform: uppercase;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 2rem;
    cursor: pointer;
}

.content {
    padding: 20px 40px;
    min-height: 80vh;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 2 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #000;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
}

.nav-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #000;
    font-weight: 300;
    font-size: 40px;
    user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

.main-footer {
    padding: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

/* Running Otter Animation */
.otter-runner {
    position: absolute;
    top: -48px; /* Positions otter's feet on the border line */
    left: 0;
    width: 100%;
    height: 50px;
    overflow: visible;
    pointer-events: none;
}

.otter-runner img {
    position: absolute;
    height: 50px;
    width: auto;
    animation: otter-run 14s linear infinite;
}

@keyframes otter-run {
    0% {
        left: -80px;
    }
    100% {
        left: 100%;
    }
}

.social-icons a { margin-left: 15px; }
.social-icons img { 
    display: inline-block; 
    vertical-align: middle; 
    width: 22px; 
    height: 22px; 
}

/* Price Page */
.price-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.price-header {
    text-align: center;
    margin-bottom: 60px;
}

.price-header h2 {
    font-size: 2rem;
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 10px;
}

.price-header .subtitle {
    font-style: italic;
    color: #666;
    font-size: 1.2rem;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.price-card {
    display: flex;
    flex-direction: column;
}

.price-card h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.price-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 20px;
}

.price-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-details p {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* About Page */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-image {
    flex: 0 0 40%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
}

.about-header h2 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.about-header h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    color: #666;
}

.about-body {
    margin-bottom: 40px;
}

.about-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.about-body .intro {
    font-weight: 500;
}

.clients-section h4 {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.clients-section p {
    font-style: italic;
    color: #555;
}

/* Contact Page */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

.contact-info {
    margin-bottom: 60px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-links span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.separator {
    color: #ccc;
    font-weight: 300;
}

.contact-form-section {
    margin-bottom: 60px;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #666;
}

.contact-form input, 
.contact-form textarea {
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    padding: 10px 0;
    font-family: inherit;
    font-size: 1rem;
    resize: none;
    transition: border-color 0.3s;
    border-radius: 0; /* Removing default border radius */
    -webkit-border-radius: 0;
}

.submit-btn {
    align-self: flex-start;
    padding: 15px 50px;
    background: transparent;
    border: 1px solid #333;
    font-family: inherit;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #000;
    color: #fff;
}

.socials-list h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.socials-list ul {
    list-style: none;
    padding: 0;
}

.socials-list li {
    margin-bottom: 10px;
}

.socials-list a {
    font-size: 1rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}


@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .main-nav ul { display: none; }
    .mobile-menu-toggle { display: flex; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .main-header, .content, .main-footer { padding: 20px; }
    .price-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-grid { flex-direction: column; gap: 40px; }
    .about-image { width: 100%; }
    
    /* Contact responsive */
    .form-row { flex-direction: column; gap: 30px; }
    .contact-links { flex-direction: column; align-items: flex-start; gap: 10px; }
    .separator { display: none; }
    
    /* Otter responsive */
    .otter-runner { top: -38px; height: 40px; }
    .otter-runner img { height: 40px; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(1, 1fr); }
    .logo a { font-size: 1.4rem; }
    
    /* Otter smaller on mobile */
    .otter-runner { top: -28px; height: 30px; }
    .otter-runner img { height: 30px; }
    @keyframes otter-run {
        0% { left: -50px; }
        100% { left: 100%; }
    }
}
