* {
    box-sizing: border-box;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

[class*="col-"] {
    float: left;
    padding: 10px;
}

.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

html {
    font-family: 'Playfair Display', serif;
}

body {
    background-color: #FCFBF4;
    padding: 0 15vw;
    padding-bottom: 70px;
}

.photo::-webkit-scrollbar,
.portfolio::-webkit-scrollbar {
    display: none;
}

img {
    width: 100%;
    height: auto;
}

a {
    color: #3a3b3c;
    background-color: transparent;
    text-decoration: none;
}

a:link {
    font-weight: bold;
}

a:hover, a:active {
    text-decoration: underline;
}

a:hover {
    color: white;
}

a:active {
    color: yellow;
}

.floating-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FCFBF4; /* Change to your brand color */
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000; /* Ensures it stays above other content */
  }
  
  .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Copyright left, Nav right */
    align-items: center;
    padding: 0 20px;
  }
  
  .copyright {
    font-size: 0.9rem;
    color: #555;
  }
  
  .footer-nav {
    display: flex;
    gap: 15px; /* Space between the two buttons */
  }
  
  .footer-btn {
    text-decoration: none;
    background-color: #f5f5ac;
    color: #6F4E37;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.85rem;
    transition: background 0.3s ease;
  }
  
  .footer-btn:hover {
    background-color: #6F4E37;
  }

.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
  }