@charset "utf-8";

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #024059;
    font-family: 'Bellota Text', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    background-color: #D9CCC1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a:link, a:visited {
    color: #BF6415;
    text-decoration: none;
}

a:hover, a:active {
    color: #023E73;
    text-decoration: none;
}

#container {
    margin: 0 auto;
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    flex: 1;
    padding: 40px 5% 2%;
    width: 100%;
    box-sizing: border-box;
}

header {
    border-bottom: 2px solid #8C503A;
    padding: 2.5% 3% 1%;
    background-color: #024059;
    text-align: left;
    position: relative;
}

header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
}

header h1 a:link, header h1 a:visited {
    color: #D9CCC1;
}

header h1 a:hover, header h1 a:active {
    color: #BF6415;
}

#topNav ul {
    margin: 20px 0;
    padding: 0;
    text-align: center;
    list-style-type: none;
}

#topNav ul li {
    display: inline-block;
    margin: 10px 15px;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

#topNav ul li a {
    position: relative;
    color: #D9CCC1;
}

#topNav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #BF6415;
    transition: width 0.3s ease;
}

#topNav ul li a:hover::after {
    width: 100%;
}

footer {
    border-top: 2px solid #8C503A;
    background-color: #024059;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
    position: relative;
    bottom: 0;
}

footer h1 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #FFFFFF;
    margin-bottom: 20px;
}

footer ul {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style-type: none;
}

footer ul li {
    display: inline-block;
    margin: 10px 15px;
    color: #D9CCC1;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

footer ul li a:link, footer ul li a:visited {
    color: #D9CCC1;
    transition: color 0.3s ease;
}

footer ul li a:hover, footer ul li a:active {
    color: #BF6415;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    color: #D9CCC1;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #BF6415;
    transform: scale(1.2);
}

/* Home Page Styles */
#nav-card-container {
    display: flex;
    margin: 35px 5% 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.nav-card {
    flex: 1 1 300px;
    margin: 20px;
    padding: 20px;
    min-width: 280px;
    max-width: 400px;
}

.nav-card h3 {
    text-align: center;
    margin-top: 30px;
    position: relative;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.nav-card h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #BF6415;
    transition: width 0.3s ease;
}

.nav-card a:hover + h3::after {
    width: 50%;
}

.nav-card a img {
    transition: all 0.3s ease;
    margin-top: 24px;
    border: 8px solid #024059;
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    width: 90%;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    display: block;
}

.nav-card a img:hover {
    opacity: 0.8;
    cursor: pointer;
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

#mainHomeText h1 {
    text-align: center;
    font-size: clamp(2rem, 6vw, 5rem);
    padding-top: 20px;
    margin-bottom: 30px;
    color: #023E73;
}

#mainHomeText h2 {
    text-align: center;
    margin: 0 0 61px;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #8C503A;
}

#mainHomeText p {
    text-align: center;
    margin: 9px 0 75px;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.welcome-text {
    text-align: center;
    margin: 9px 0 120px;
    font-size: clamp(1.1rem, 2.2vw, 1.2rem);
}

@media screen and (min-width: 768px) {
    header h1 {
        text-align: left;
    }

    #topNav ul {
        margin: -35px 0 0 0;
        text-align: right;
    }

    .packageOptions {
        width: 28%;
        margin-bottom: 0;
    }

    .nav-card {
        flex-basis: 28%;
        margin-bottom: 0;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button {
    animation: pulse 2s infinite;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    top: -100%;
    left: 0;
    width: 100vw;
    height: 200vh;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 9998;
    animation: scanlines 60s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(50%); }
}

h1, h2, h3 {
    font-family: 'Young Serif', serif;
}

header h1 a {
    position: relative;
    display: inline-block;
    color: #D9CCC1;
    transition: all 0.3s ease;
}

header h1 a:hover {
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #BF6415,
        0 0 40px #BF6415,
        0 0 80px #BF6415;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        text-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px #BF6415,
            0 0 40px #BF6415,
            0 0 80px #BF6415;
    }
    50% {
        text-shadow:
            0 0 5px #fff,
            0 0 15px #fff,
            0 0 30px #BF6415,
            0 0 60px #BF6415,
            0 0 100px #BF6415;
    }
    100% {
        text-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px #BF6415,
            0 0 40px #BF6415,
            0 0 80px #BF6415;
    }
}

/* About page specific styles */
#mainHomeText h1.about-title {
    text-align: center;
    margin-bottom: 1.5em;
}

.intro-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-section h2 {
    font-size: 1.8em;
    margin-bottom: 1em;
}

.intro-section p {
    font-size: 1.2em;
    line-height: 1.8;
    white-space: pre-line;
    margin-bottom: 1.5em;
}

.process-title {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 2em;
    color: #023E73;
}

#designProcessBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.process-step {
    flex: 1 1 200px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    background-color: #024059;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 2px solid #8C503A;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.process-step h3 {
    font-size: 1.4em;
    margin-bottom: 1em;
    color: #BF6415;
    transition: all 0.3s ease;
}

.process-step:hover h3 {
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #BF6415,
        0 0 40px #BF6415,
        0 0 80px #BF6415;
    animation: pulse 2s infinite;
}

.process-step p {
    line-height: 1.6;
    color: #D9CCC1;
}

.highlight-orange {
    color: #BF6415; /* Orange color from your palette */
}

.highlight-link {
    color: #BF6415; /* Orange color from your palette */
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 0s ease;
}

.highlight-link:hover {
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #BF6415,
        0 0 40px #BF6415,
        0 0 80px #BF6415;
    animation: pulse 2s infinite;
}

/* Portfolio Page Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-grid .portfolio-item:last-child {
    margin-left: auto;
    margin-right: auto;
    transform: translateX(50%);
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(2, 64, 89, 0.2);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
    padding-top: 56.25%;
    border: 3px solid #024059;
}

.portfolio-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.95) contrast(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(2, 64, 89, 0.95);
    color: #D9CCC1;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 2px solid #BF6415;
}

.portfolio-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(2, 64, 89, 0.3);
    border-color: #BF6415;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: #BF6415;
    margin-bottom: 0.8em;
    font-size: 1.6em;
    text-shadow: 0 0 5px rgba(191, 100, 21, 0.5);
}

.portfolio-overlay p {
    font-size: 1.1em;
    line-height: 1.5;
}

/* About Page Styles */
.about-title {
    text-align: center;
    margin-bottom: 1.5em;
}

.intro-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-section h2 {
    font-size: 1.8em;
    margin-bottom: 1em;
}

.intro-section p {
    font-size: 1.2em;
    line-height: 1.8;
    white-space: pre-line;
    margin-bottom: 1.5em;
}

.process-title {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 2em;
    color: #023E73;
}

#designProcessBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.process-step {
    flex: 1 1 200px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    background-color: #024059;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 2px solid #8C503A;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.process-step h3 {
    font-size: 1.4em;
    margin-bottom: 1em;
    color: #BF6415;
    transition: all 0.3s ease;
}

.process-step p {
    line-height: 1.6;
    color: #D9CCC1;
}

/* Pricing Page Styles */
.pricing-container {
    padding: 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-title {
    text-align: center;
    font-size: clamp(2.5rem, 7vw, 4rem);
    color: #023E73;
    margin-bottom: 0.5em;
    text-shadow: 0 0 5px rgba(2, 62, 115, 0.5);
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4em;
    font-size: 1.3em;
    line-height: 1.6;
    color: #024059;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.price-card {
    background: #024059;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    border: 2px solid #8C503A;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #BF6415;
    box-shadow: 0 15px 30px rgba(2, 64, 89, 0.3);
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-header h2 {
    color: #BF6415;
    font-size: 1.8em;
    margin-bottom: 1rem;
}

.price {
    color: #D9CCC1;
    font-size: 2.5em;
    font-weight: bold;
}

.currency {
    font-size: 0.5em;
    vertical-align: super;
}

.period {
    font-size: 0.3em;
    color: #8C503A;
}

.price-features {
    margin-bottom: auto;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    color: #D9CCC1;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.price-features i {
    color: #BF6415;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.price-button {
    display: block;
    text-align: center;
    padding: 1rem;
    background: transparent;
    border: 2px solid #BF6415;
    color: #BF6415;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.price-button:hover {
    background: #BF6415;
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #BF6415;
}

.pro {
    border-color: #BF6415;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #BF6415;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9em;
}

.custom-quote {
    text-align: center;
    padding: 3rem;
    background: #024059;
    border-radius: 12px;
    border: 2px solid #8C503A;
    margin-top: 4rem;
}

.custom-quote h3 {
    color: #BF6415;
    font-size: 1.8em;
    margin-bottom: 1rem;
}

.custom-quote p {
    color: #D9CCC1;
    margin-bottom: 2rem;
    font-size: 1.1em;
}

.custom-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #D9CCC1;
    border: 2px solid #BF6415;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background: #BF6415;
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #BF6415;
}

/* Global Styles */
body::after {
    content: "";
    position: fixed;
    top: -100%;
    left: 0;
    width: 100vw;
    height: 200vh;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 9998;
    animation: scanlines 60s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(50%); }
}

h1, h2, h3 {
    font-family: 'Young Serif', serif;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
    
    .portfolio-item, 
    .portfolio-grid .portfolio-item:last-child {
        max-width: 800px;
        margin: 0 auto;
        transform: none;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pro {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    header h1 {
        text-align: left;
    }

    #topNav ul {
        margin: -35px 0 0 0;
        text-align: right;
    }
    
    .portfolio-grid {
        padding: 0 1rem;
    }
    
    .portfolio-overlay {
        padding: 1.5rem;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.4em;
    }
    
    .portfolio-overlay p {
        font-size: 1em;
    }
    
    .pricing-container {
        padding: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .price-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pro {
        transform: scale(1);
    }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
